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

16 lines
288 B
Nix
Raw Normal View History

2017-08-16 21:21:07 -04:00
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";
};
};
}