haskellPackages.cabal2nix-unstable: use separate bin output

This commit is contained in:
sternenseemann
2025-07-29 18:36:51 +02:00
parent e68a86c6a3
commit 8fec8af67a
4 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
#! /usr/bin/env nix-shell #! /usr/bin/env nix-shell
#! nix-shell -i bash -p coreutils haskellPackages.cabal2nix-unstable git -I nixpkgs=. #! nix-shell -i bash -p coreutils haskellPackages.cabal2nix-unstable.bin git -I nixpkgs=.
set -euo pipefail set -euo pipefail

View File

@@ -1,5 +1,5 @@
#! /usr/bin/env nix-shell #! /usr/bin/env nix-shell
#! nix-shell -i bash -p coreutils curl jq gnused haskellPackages.cabal2nix-unstable -I nixpkgs=. #! nix-shell -i bash -p coreutils curl jq gnused haskellPackages.cabal2nix-unstable.bin -I nixpkgs=.
# Updates cabal2nix-unstable to the latest master of the nixos/cabal2nix repository. # Updates cabal2nix-unstable to the latest master of the nixos/cabal2nix repository.
# See regenerate-hackage-packages.sh for details on the purpose of this script. # See regenerate-hackage-packages.sh for details on the purpose of this script.

View File

@@ -1301,7 +1301,7 @@ builtins.intersectAttrs super {
>> "$out" >> "$out"
''; '';
}; };
}) (justStaticExecutables super.cabal2nix-unstable); }) (enableSeparateBinOutput super.cabal2nix-unstable);
# test suite needs local redis daemon # test suite needs local redis daemon
nri-redis = dontCheck super.nri-redis; nri-redis = dontCheck super.nri-redis;

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell #!/usr/bin/env nix-shell
#!nix-shell -i bash -p cabal2nix curl jq haskellPackages.cabal2nix-unstable -I nixpkgs=. #!nix-shell -i bash -p cabal2nix curl jq haskellPackages.cabal2nix-unstable.bin -I nixpkgs=.
# #
# This script will update the spago derivation to the latest version using # This script will update the spago derivation to the latest version using
# cabal2nix. # cabal2nix.