summary refs log tree commit diff
path: root/pkgs/desktops/gnome/GConf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome/GConf.nix')
-rw-r--r--pkgs/desktops/gnome/GConf.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/pkgs/desktops/gnome/GConf.nix b/pkgs/desktops/gnome/GConf.nix
deleted file mode 100644
index 74b646f6cc3..00000000000
--- a/pkgs/desktops/gnome/GConf.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{input, stdenv, fetchurl, pkgconfig, perl, glib, gtk, libxml2, ORBit2, popt}:
-
-assert pkgconfig != null && perl != null
-  && glib != null && gtk != null
-  && libxml2 != null && ORBit2 != null && popt != null;
-
-stdenv.mkDerivation {
-  inherit (input) name src;
-
-  # Perl is not `supposed' to be required, but it is.
-  buildInputs = [pkgconfig perl glib gtk libxml2 popt];
-  propagatedBuildInputs = [ORBit2];
-}