summary refs log tree commit diff
path: root/pkgs/build-support/builder-defs/template-bdp-uud.nix
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2016-08-31 11:34:46 +0200
committerDomen Kožar <domen@dev.si>2016-08-31 11:34:46 +0200
commitda421bc75f98c1b19f214a3b6b7cda07dc4c088b (patch)
treec6d42a4daa2cd2df716415ce4339f118dd5fb9b3 /pkgs/build-support/builder-defs/template-bdp-uud.nix
parent557b329608f666d216d7e274570998d5d8b2e773 (diff)
downloadnixpkgs-da421bc75f98c1b19f214a3b6b7cda07dc4c088b.tar
nixpkgs-da421bc75f98c1b19f214a3b6b7cda07dc4c088b.tar.gz
nixpkgs-da421bc75f98c1b19f214a3b6b7cda07dc4c088b.tar.bz2
nixpkgs-da421bc75f98c1b19f214a3b6b7cda07dc4c088b.tar.lz
nixpkgs-da421bc75f98c1b19f214a3b6b7cda07dc4c088b.tar.xz
nixpkgs-da421bc75f98c1b19f214a3b6b7cda07dc4c088b.tar.zst
nixpkgs-da421bc75f98c1b19f214a3b6b7cda07dc4c088b.zip
Fix #4210: Remove builderDefs
This was one of the ways to build packages, we are trying
hard to minimize different ways so it's easier for newcomers
to learn only one way.

This also:

- removes texLive (old), fixes #14807
- removed upstream-updater, if that code is still used it should be in
  separate repo
- changes a few packages like gitit/mit-scheme to use new texlive
Diffstat (limited to 'pkgs/build-support/builder-defs/template-bdp-uud.nix')
-rw-r--r--pkgs/build-support/builder-defs/template-bdp-uud.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/build-support/builder-defs/template-bdp-uud.nix b/pkgs/build-support/builder-defs/template-bdp-uud.nix
deleted file mode 100644
index 2b2af257d37..00000000000
--- a/pkgs/build-support/builder-defs/template-bdp-uud.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-a :  
-let 
-  s = import ./src-for-default.nix;
-  buildInputs = with a; [
-    
-  ];
-in
-rec {
-  src = a.fetchUrlFromSrcInfo s;
-
-  inherit (s) name;
-  inherit buildInputs;
-  configureFlags = [];
-
-  /* doConfigure should be removed if not needed */
-  phaseNames = ["doConfigure" "doMakeInstall"];
-      
-  meta = {
-    description = "${abort "Specify description"}";
-    maintainers = [
-      a.lib.maintainers.(abort "Specify maintainer")
-    ];
-    platforms = with a.lib.platforms; 
-      (abort "Specify supported platforms");
-  };
-}