9 lines
199 B
Nix
9 lines
199 B
Nix
|
{fetchFromGitLab}: let
|
||
|
source = builtins.fromJSON (builtins.readFile ./source.json);
|
||
|
in
|
||
|
fetchFromGitLab {
|
||
|
owner = "kreativekorp";
|
||
|
repo = "openrelay";
|
||
|
inherit (source) rev sha256;
|
||
|
}
|