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
1 changed files with 4 additions and 0 deletions

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; };