2024-04-08 23:46:08 +00:00
|
|
|
{ nix-pills ? { outPath = ./.; revCount = 1234; shortRev = "abcdef"; }
|
|
|
|
, nixpkgs ? { outPath = <nixpkgs>; revCount = 1234; shortRev = "abcdef"; }
|
2017-08-19 14:56:31 +00:00
|
|
|
, officialRelease ? false
|
|
|
|
}:
|
|
|
|
|
2017-08-17 01:21:07 +00:00
|
|
|
let
|
|
|
|
pkgs = import <nixpkgs> { };
|
2021-12-15 20:52:49 +00:00
|
|
|
|
|
|
|
pills = import ./default.nix {
|
2017-08-19 14:56:31 +00:00
|
|
|
inherit pkgs;
|
2024-04-08 23:46:08 +00:00
|
|
|
|
|
|
|
inherit (nix-pills) revCount shortRev;
|
2017-08-19 14:56:31 +00:00
|
|
|
};
|
2021-12-15 20:52:49 +00:00
|
|
|
in rec {
|
|
|
|
inherit (pills) html-split epub;
|
2017-08-17 01:21:07 +00:00
|
|
|
release = pkgs.releaseTools.aggregate
|
|
|
|
{ name = "nix-pills-release";
|
|
|
|
constituents =
|
2021-12-15 20:52:49 +00:00
|
|
|
[
|
|
|
|
html-split
|
|
|
|
epub
|
2017-08-17 01:21:07 +00:00
|
|
|
];
|
|
|
|
meta.description = "All build outputs";
|
|
|
|
};
|
|
|
|
}
|