0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

haskellPackages.cabal2nix-unstable: 2025-04-23 -> 2025-04-30

Adds support for the pkg-config python3-embed library name.
This commit is contained in:
Marc Jakobi 2025-05-01 20:21:14 +02:00 committed by sternenseemann
parent dbb2d5c1fa
commit 3d9dba7860
2 changed files with 6 additions and 6 deletions

View file

@ -35,10 +35,10 @@
}:
mkDerivation {
pname = "cabal2nix";
version = "unstable-2025-04-23";
version = "unstable-2025-04-30";
src = fetchzip {
url = "https://github.com/NixOS/cabal2nix/archive/43fbd58ec8ef82c4fa627c89218d215442bcc3ac.tar.gz";
sha256 = "1620iaxs99rjq15v01xhqjzalvdbk7d69w7bz1ih782g7jqhkqsq";
url = "https://github.com/NixOS/cabal2nix/archive/fbe593fe71b916861b97117dfb91f7aae9c4fcce.tar.gz";
sha256 = "0sdyyawsz5zl2ffg4h4r3xcf73gfz9v0vgahccbp01if3m2g7p0y";
};
postUnpack = "sourceRoot+=/cabal2nix; echo source root reset to $sourceRoot";
isLibrary = true;

View file

@ -377817,7 +377817,7 @@ self: {
inline-c,
primitive,
process,
python3-embed,
python3,
quickcheck-instances,
stm,
tasty,
@ -377851,7 +377851,7 @@ self: {
transformers
vector
];
libraryPkgconfigDepends = [ python3-embed ];
libraryPkgconfigDepends = [ python3 ];
testHaskellDepends = [
base
tasty
@ -377867,7 +377867,7 @@ self: {
hydraPlatforms = lib.platforms.none;
broken = true;
}
) { python3-embed = null; };
) { inherit (pkgs) python3; };
"inline-r" = callPackage (
{