mirror of
https://github.com/NixOS/nix-pills
synced 2024-11-10 05:44:14 +00:00
8291ca1677
This reverts commit 4033045782
.
To preserve history.
25 lines
563 B
Nix
25 lines
563 B
Nix
{ nix-pills ? { outPath = ./.; revCount = 1234; shortRev = "abcdef"; }
|
|
, nixpkgs ? { outPath = <nixpkgs>; revCount = 1234; shortRev = "abcdef"; }
|
|
, officialRelease ? false
|
|
}:
|
|
|
|
let
|
|
pkgs = import <nixpkgs> { };
|
|
|
|
pills = import ./default.nix {
|
|
inherit pkgs;
|
|
|
|
inherit (nix-pills) revCount shortRev;
|
|
};
|
|
in rec {
|
|
inherit (pills) html-split epub;
|
|
release = pkgs.releaseTools.aggregate
|
|
{ name = "nix-pills-release";
|
|
constituents =
|
|
[
|
|
html-split
|
|
epub
|
|
];
|
|
meta.description = "All build outputs";
|
|
};
|
|
}
|