1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00

Create a release.nix

This commit is contained in:
Graham Christensen 2017-08-16 21:21:07 -04:00
parent df67bd4888
commit 8c7347d8c6
No known key found for this signature in database
GPG key ID: 06121D366FE9435C

15
release.nix Normal file
View file

@ -0,0 +1,15 @@
let
pkgs = import <nixpkgs> { };
in rec {
html-split = import ./default.nix { inherit pkgs; };
release = pkgs.releaseTools.aggregate
{ name = "nix-pills-release";
constituents =
[ html-split
];
meta.description = "All build outputs";
};
};
}