1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #33672 from dtzWill/fix/top-level-nix-tools

nix-{delegate,deploy,diff}: add top-level attributes, static
This commit is contained in:
Peter Simons 2018-01-12 15:50:56 +01:00 committed by GitHub
commit f98d485ef9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19642,6 +19642,10 @@ with pkgs;
nix-bundle = callPackage ../tools/package-management/nix-bundle { nix = nixUnstable; };
nix-delegate = haskell.lib.justStaticExecutables haskellPackages.nix-delegate;
nix-deploy = haskell.lib.justStaticExecutables haskellPackages.nix-deploy;
nix-diff = haskell.lib.justStaticExecutables haskellPackages.nix-diff;
nix-info = callPackage ../tools/nix/info { };
nix-info-tested = callPackage ../tools/nix/info { doCheck = true; };