mirror of
https://github.com/NixOS/nix-pills
synced 2024-11-10 05:44:14 +00:00
23 lines
443 B
Nix
23 lines
443 B
Nix
{ nix-pills ? { outPath = ./.; }
|
|
, nixpkgs ? { outPath = <nixpkgs>; }
|
|
, officialRelease ? false
|
|
}:
|
|
|
|
let
|
|
pkgs = import <nixpkgs> { };
|
|
|
|
pills = import ./default.nix {
|
|
inherit pkgs;
|
|
};
|
|
in rec {
|
|
inherit (pills) html-split epub;
|
|
release = pkgs.releaseTools.aggregate
|
|
{ name = "nix-pills-release";
|
|
constituents =
|
|
[
|
|
html-split
|
|
epub
|
|
];
|
|
meta.description = "All build outputs";
|
|
};
|
|
}
|