1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/top-level/template-composing-builder.nix
Michael Raskin 56cd763e46 Added Snd sound editor
svn path=/nixpkgs/trunk/; revision=9573
2007-11-03 04:15:13 +00:00

19 lines
438 B
Nix

args : with args;
with builderDefs {
src = /* put a fetchurl here */
buildInputs = [];
configureFlags = [];
} null; /* null is a terminator for sumArgs */
with stringsWithDeps;
stdenv.mkDerivation rec {
name = "${abort "Specify name"}";
builder = writeScript (name + "-builder")
(textClosure [(abort "Specify phases - defined here or in builderDefs")]);
meta = {
description = "
${abort "Write a description"}
";
};
}