about summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-08-19 12:36:00 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-08-19 12:36:00 +0000
commit9075ea221806ded4c23eda68c2b0eee201ae1d5b (patch)
treea8e2ca32e5580c79811c2b0b5157bba48e269635 /pkgs/development/misc
parent87ff8d6347cd99618bc8f9ff58ddf357ce38c522 (diff)
downloadnixlib-9075ea221806ded4c23eda68c2b0eee201ae1d5b.tar
nixlib-9075ea221806ded4c23eda68c2b0eee201ae1d5b.tar.gz
nixlib-9075ea221806ded4c23eda68c2b0eee201ae1d5b.tar.bz2
nixlib-9075ea221806ded4c23eda68c2b0eee201ae1d5b.tar.lz
nixlib-9075ea221806ded4c23eda68c2b0eee201ae1d5b.tar.xz
nixlib-9075ea221806ded4c23eda68c2b0eee201ae1d5b.tar.zst
nixlib-9075ea221806ded4c23eda68c2b0eee201ae1d5b.zip
moved nix-repository-manager to add additional feature automatically updating given bleeding-edge-fetch-infos.nix
svn path=/nixpkgs/trunk/; revision=12658
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/bleeding-edge-repos/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/misc/bleeding-edge-repos/default.nix b/pkgs/development/misc/bleeding-edge-repos/default.nix
index b86248c66712..a5a4166b6e71 100644
--- a/pkgs/development/misc/bleeding-edge-repos/default.nix
+++ b/pkgs/development/misc/bleeding-edge-repos/default.nix
@@ -21,7 +21,12 @@ args:
          then (__getAttr name fetchInfos) { inherit fetchurl; }
          else throw "warning, no bleeding edge source attribute found in bleeding-edge-fetch-infos.nix with name ${name}";
 
-  repos = {
+  repos = 
+      let kde4support = builtins.listToAttrs (map (n: lib.nv ("kdesupport_"+n) { type = "svn"; url = "svn://anonsvn.kde.org/home/kde/trunk/kdesupport/${n}"; groups="kdesupport"; })
+                          [ "akode" "eigen" "gmm" "qca" "qimageblitz" "soprano" "strigi" "taglib" 
+                          "automoc" "akonadi" "cpptoxml" "decibel" "emerge" "phonon" "tapioca_qt" "telepathy_qt"]); in
+      # in trunk but not yet supported by nix: akonadi/ automoc/ cpptoxml/ decibel/ emerge/ kdewin-installer/ kdewin32/ phonon/ tapioca-qt/ telepathy-qt/
+    {
     # each repository has 
     # a type, url and maybe a tag
     # you can add groups names to update some repositories at once
@@ -56,8 +61,10 @@ args:
       haxml = { type="darcs"; url=http://www.cs.york.ac.uk/fp/darcs/HaXml; groups = "pg_haskell"; };
       storableVector = { type="darcs"; url=http://darcs.haskell.org/storablevector/; groups = "haskell"; };
 
+      kdepimlibs = { type="svn"; url="svn://anonsvn.kde.org/home/kde/trunk/KDE/kdepimlibs"; groups = "kde"; };
+      kdebase = { type="svn"; url="svn://anonsvn.kde.org/home/kde/trunk/KDE/kdebase"; groups = "kde"; };
 
       # git repositories 
       hypertable =  { type="git"; url="git://scm.hypertable.org/pub/repos/hypertable.git"; groups=""; };
-    } // getConfig [ "bleedingEdgeRepos" "repos" ] {};
+    } // kde4support // getConfig [ "bleedingEdgeRepos" "repos" ] {};
 }