about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-01-20 16:40:38 +0100
committerDomen Kožar <domen@dev.si>2014-01-21 14:11:19 +0100
commit0c9f4cb22ae8da5f2cdacb401bec63f699933bb0 (patch)
tree96bfd3e3e525d528b2b9ec7eb31047d94e9fee38 /pkgs/servers
parentdbfaeaf0dfc00bb593d73c1998aa83a193824114 (diff)
downloadnixlib-0c9f4cb22ae8da5f2cdacb401bec63f699933bb0.tar
nixlib-0c9f4cb22ae8da5f2cdacb401bec63f699933bb0.tar.gz
nixlib-0c9f4cb22ae8da5f2cdacb401bec63f699933bb0.tar.bz2
nixlib-0c9f4cb22ae8da5f2cdacb401bec63f699933bb0.tar.lz
nixlib-0c9f4cb22ae8da5f2cdacb401bec63f699933bb0.tar.xz
nixlib-0c9f4cb22ae8da5f2cdacb401bec63f699933bb0.tar.zst
nixlib-0c9f4cb22ae8da5f2cdacb401bec63f699933bb0.zip
evolution-data-server: upgrade and move to gnome3 namespace
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/evolution-data-server/default.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/pkgs/servers/evolution-data-server/default.nix b/pkgs/servers/evolution-data-server/default.nix
deleted file mode 100644
index 3a905a82db8b..000000000000
--- a/pkgs/servers/evolution-data-server/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-x@{builderDefsPackage
-  , pkgconfig, flex, bison, libtool, intltool, perl
-  , db4, krb5, openldap, glib, libxml2, GConf
-  , nss, gtk, libgnome, libsoup, gnome_keyring
-  , gtkdoc, sqlite, libgweather, libical, icu
-  , dbus_glib, gperf, nspr, gmp, nettle, libgdata_0_6
-  , ...}:
-builderDefsPackage
-(a :  
-let 
-  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 
-    [];
-
-  buildInputs = map (n: builtins.getAttr n x)
-    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
-  sourceInfo = rec {
-    url = "mirror://gnome/sources/evolution-data-server/2.32/evolution-data-server-2.32.3.tar.bz2";
-    hash = "744026a745b711b3e393b61fed21c4926d1b10a3aa7da64f4b33a3e3bf5b085c";
-    version = "2.32.3";
-    name = "evolution-data-server-${version}";
-  };
-in
-rec {
-  src = a.fetchurl {
-    url = sourceInfo.url;
-    sha256 = sourceInfo.hash;
-  };
-
-  inherit (sourceInfo) name version;
-  inherit buildInputs;
-
-  /* doConfigure should be removed if not needed */
-  phaseNames = ["doConfigure" "doMakeInstall"];
-
-  configureFlags = [
-    "--with-nspr-includes=${nspr}/include/nspr"
-    "--with-nss-includes=${nss}/include/nss"
-  ];
-      
-  meta = {
-    description = "Evolution Data Server";
-    maintainers = with a.lib.maintainers;
-    [
-      /* I am only interested in it for libebook... */
-      raskin
-    ];
-    platforms = with a.lib.platforms;
-      linux;
-    broken = true;
-  };
-  passthru = {
-    updateInfo = {
-      downloadPage = "http://projects.gnome.org/evolution/download.shtml";
-    };
-  };
-}) x
-