Make a hydra-compatible job
This commit is contained in:
parent
07d798dce2
commit
016fffc01e
|
@ -1,4 +1,5 @@
|
||||||
{ pkgs ? import ./nix {} }:
|
{ pkgs ? import ./nix {}
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
ofborg.rs = (pkgs.callPackage ./nix/ofborg-carnix.nix {}).ofborg_0_1_0;
|
ofborg.rs = (pkgs.callPackage ./nix/ofborg-carnix.nix {}).ofborg_0_1_0;
|
||||||
}
|
}
|
||||||
|
|
11
release.nix
Normal file
11
release.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ nixpkgs ? ./nix
|
||||||
|
, supportedSystems ? [ "x86_64-linux" "x86_64-darwin" ]
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
pkgs = import nixpkgs {};
|
||||||
|
inherit (pkgs) lib;
|
||||||
|
|
||||||
|
ofborgpkgs = lib.genAttrs supportedSystems (system:
|
||||||
|
(import ./default.nix { pkgs = import nixpkgs { inherit system; }; })
|
||||||
|
);
|
||||||
|
in ofborgpkgs
|
Loading…
Reference in a new issue