summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-11-17 22:21:56 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-11-17 22:26:49 +0100
commit747e75750077bb5b378140d43eac1c17547fa1fc (patch)
tree5f1a451fb23bf931efb8fbc9fe621fbf9110dac5 /pkgs/desktops/gnome-2/default.nix
parent4aa1dff1d6bba2d7c64503bbe142d819a289c5e3 (diff)
downloadnixpkgs-747e75750077bb5b378140d43eac1c17547fa1fc.tar
nixpkgs-747e75750077bb5b378140d43eac1c17547fa1fc.tar.gz
nixpkgs-747e75750077bb5b378140d43eac1c17547fa1fc.tar.bz2
nixpkgs-747e75750077bb5b378140d43eac1c17547fa1fc.tar.lz
nixpkgs-747e75750077bb5b378140d43eac1c17547fa1fc.tar.xz
nixpkgs-747e75750077bb5b378140d43eac1c17547fa1fc.tar.zst
nixpkgs-747e75750077bb5b378140d43eac1c17547fa1fc.zip
libunique: fix build, make the package unique
The one in gnome2 was failing to build,
but all there is likely in a desolate state anyway.

In gmpc it also seemed without any reason to have a duplicate.
Diffstat (limited to 'pkgs/desktops/gnome-2/default.nix')
-rw-r--r--pkgs/desktops/gnome-2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/desktops/gnome-2/default.nix b/pkgs/desktops/gnome-2/default.nix
index ce8d9e54c72..cecd56ad4f2 100644
--- a/pkgs/desktops/gnome-2/default.nix
+++ b/pkgs/desktops/gnome-2/default.nix
@@ -1,4 +1,4 @@
-{ callPackage, self, stdenv, gettext, gvfs, overrides ? {} }:
+{ callPackage, self, stdenv, gettext, gvfs, libunique, overrides ? {} }:
 {
   __overrides = overrides;
 
@@ -67,7 +67,7 @@
   startup_notification = callPackage ./platform/startup-notification { };
 
   # Required for nautilus
-  libunique = callPackage ./platform/libunique { };
+  inherit (libunique);
 
   gtkglext = callPackage ./platform/gtkglext { };