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

24 lines
443 B
Nix
Raw Normal View History

2024-04-08 16:49:19 -04:00
{ nix-pills ? { outPath = ./.; }
, nixpkgs ? { outPath = <nixpkgs>; }
2017-08-19 10:56:31 -04:00
, officialRelease ? false
}:
2017-08-16 21:21:07 -04:00
let
pkgs = import <nixpkgs> { };
pills = import ./default.nix {
2017-08-19 10:56:31 -04:00
inherit pkgs;
};
in rec {
inherit (pills) html-split epub;
2017-08-16 21:21:07 -04:00
release = pkgs.releaseTools.aggregate
{ name = "nix-pills-release";
constituents =
[
html-split
epub
2017-08-16 21:21:07 -04:00
];
meta.description = "All build outputs";
};
}