1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/top-level/template-simple.nix

18 lines
181 B
Nix

args:
args.stdenv.mkDerivation {
name = "";
src = args.fetchurl {
url = ;
sha256 = "";
};
buildInputs =(with args; []);
meta = {
description = "
";
};
}