path:
/release.nix
527 B | plain
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ oeffisearchSrc ? { outPath = ./.; revCount = 1234; shortRev = "abcdef"; }
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.09.tar.gz
, officialRelease ? false
}:
let
pkgs = import nixpkgs { system = builtins.currentSystem or "x86_64-linux"; };
jobs = rec {
build.x86_64-linux = pkgs.releaseTools.nixBuild (
(import ./default.nix { inherit pkgs; })
.drvAttrs // {
postHook = ''
src=$origSrc
'';
}
);
};
in jobs