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