Skip to content

Commit

Permalink
cabin: 0.10.1 -> 0.11.0, renamed from poac
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Jan 5, 2025
1 parent a085732 commit d021542
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 2 additions & 0 deletions nixos/doc/manual/release-notes/rl-2505.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@

- `cabin` has been renamed to `cabin-fonts` to make the name available for the project previously called `poac`.

- `poac` has been renamed to `cabin` to match the upstream name change but an alias has been added. See the [new name announcement](https://github.com/orgs/cabinpkg/discussions/1052) for more details.

- `racket_7_9` has been removed, as it is insecure. It is recommended to use Racket 8 instead.

- `rofi` has been updated from 1.7.5 to 1.7.6 which introduces some breaking changes to binary plugins, and also contains a lot of new features and bug fixes. This is highlighted because the patch version bump does not indicate the volume of changes by itself. See the [upstream release notes](https://github.com/davatorium/rofi/releases/tag/1.7.6) for the full list of changes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
tbb_2021_11,
tbb_2022_0,
libgit2,
curl,
fmt,
Expand All @@ -20,11 +20,11 @@ let
};
in
stdenv.mkDerivation rec {
pname = "poac";
version = "0.10.1";
pname = "cabin";
version = "0.11.0";

src = fetchFromGitHub {
owner = "poac-dev";
owner = "cabinpkg";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-uUVNM70HNJwrr38KB+44fNvLpWihoKyDpRj7d7kbo7k=";
Expand All @@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
buildInputs = [
libgit2
fmt
tbb_2021_11
tbb_2022_0
nlohmann_json
curl
];
Expand All @@ -63,11 +63,11 @@ stdenv.mkDerivation rec {

meta = {
broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64);
homepage = "https://poac.dev";
homepage = "https://cabinpkg.com";
description = "A package manager and build system for C++";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.qwqawawow ];
platforms = lib.platforms.unix;
mainProgram = "poac";
mainProgram = "cabin";
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,7 @@ mapAliases {
playwright = lib.warnOnInstantiate "'playwright' will reference playwright-driver in 25.05. Reference 'python3Packages.playwright' for the python test launcher" (python3Packages.toPythonApplication python3Packages.playwright); # Added 2024-10-04
pleroma-otp = throw "'pleroma-otp' has been renamed to/replaced by 'pleroma'"; # Converted to throw 2024-10-17
pltScheme = racket; # just to be sure
poac = cabin; # Added 2025-01-04
poretools = throw "poretools has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-06-03
powerdns = pdns; # Added 2022-03-28

Expand Down

0 comments on commit d021542

Please sign in to comment.