summary refs log tree commit diff
path: root/pkgs/build-support/builder-defs/template-composing-builder.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/builder-defs/template-composing-builder.nix')
-rw-r--r--pkgs/build-support/builder-defs/template-composing-builder.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/build-support/builder-defs/template-composing-builder.nix b/pkgs/build-support/builder-defs/template-composing-builder.nix
deleted file mode 100644
index 979df800008..00000000000
--- a/pkgs/build-support/builder-defs/template-composing-builder.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-a :  
-let 
-  fetchurl = a.fetchurl;
-
-  version = a.lib.attrByPath ["version"] "" a; 
-  buildInputs = with a; [
-    
-  ];
-in
-rec {
-  src = /* Here a fetchurl expression goes */;
-
-  inherit buildInputs;
-  configureFlags = [];
-
-  /* doConfigure should be removed if not needed */
-  phaseNames = ["doConfigure" "doMakeInstall"];
-      
-  name = "${abort "Specify name"}-" + version;
-  meta = {
-    description = "${abort "Specify description"}";
-    maintainers = [
-      a.lib.maintainers.(abort "Specify maintainer")
-    ];
-  };
-}