18 lines
181 B
Nix
18 lines
181 B
Nix
|
args:
|
||
|
args.stdenv.mkDerivation {
|
||
|
name = "";
|
||
|
|
||
|
src = args.fetchurl {
|
||
|
url = ;
|
||
|
sha256 = "";
|
||
|
};
|
||
|
|
||
|
buildInputs =(with args; []);
|
||
|
|
||
|
meta = {
|
||
|
description = "
|
||
|
|
||
|
";
|
||
|
};
|
||
|
}
|