GPR2_Exercise01/release.nix
2019-01-10 23:38:04 +01:00

13 lines
No EOL
296 B
Nix

{ projectSource ? builtins.fetchGit ./.
, officialRelease ? false
, nixpkgs ? import <nixpkgs> {}
}:
rec {
build = nixpkgs.lib.genAttrs [ "x86_64-linux" ] (system:
nixpkgs.releaseTools.nixBuild {
name = "gpr2-exercise01";
src = projectSource;
doCheck = false;
}
);
}