about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-04-06 19:30:30 +0000
committerPeter Simons <simons@cryp.to>2012-04-06 19:30:30 +0000
commit8beb891d52ed387255db66ebf26e4b49285f9e89 (patch)
treea0bd0e14da197332eb5f6d8ab34d5bcec6ffeaff /pkgs/applications/graphics
parent44b6ab6d32aa7f908a9aacea4f6d5c48403ad332 (diff)
downloadnixlib-8beb891d52ed387255db66ebf26e4b49285f9e89.tar
nixlib-8beb891d52ed387255db66ebf26e4b49285f9e89.tar.gz
nixlib-8beb891d52ed387255db66ebf26e4b49285f9e89.tar.bz2
nixlib-8beb891d52ed387255db66ebf26e4b49285f9e89.tar.lz
nixlib-8beb891d52ed387255db66ebf26e4b49285f9e89.tar.xz
nixlib-8beb891d52ed387255db66ebf26e4b49285f9e89.tar.zst
nixlib-8beb891d52ed387255db66ebf26e4b49285f9e89.zip
xscreensaver: updated to version 5.15 (and moved to pkgs/misc/screensavers hierarchy)
svn path=/nixpkgs/trunk/; revision=33655
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/xscreensaver/default.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/pkgs/applications/graphics/xscreensaver/default.nix b/pkgs/applications/graphics/xscreensaver/default.nix
deleted file mode 100644
index 7458626769a4..000000000000
--- a/pkgs/applications/graphics/xscreensaver/default.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, bc, perl, pam
-, libXext, libXScrnSaver, libX11, libXrandr, libXmu, libXxf86vm, libXrender
-, libXxf86misc
-, libjpeg, mesa, gtk, libxml2, libglade
-}:
-
-stdenv.mkDerivation rec {
-  version = "5.14";
-  name = "xscreensaver-${version}";
-
-  src = fetchurl {
-    url = "http://www.jwz.org/xscreensaver/${name}.tar.gz";
-    sha256 = "08zhxccdny7198x4yi3hm7jrw98bi3mnc1c4fwhmf5rf8l7h9siy";
-  };
-
-  buildInputs =
-    [ pkgconfig bc perl libjpeg mesa gtk libxml2 libglade pam
-      libXext libXScrnSaver libX11 libXrandr libXmu libXxf86vm libXrender
-      libXxf86misc
-    ];
-
-  configureFlags =
-    [ "--with-gl" "--with-pam" "--with-pixbuf" "--with-proc-interrupts"
-      "--with-dpms-ext" "--with-randr-ext" "--with-xinerama-ext"
-      "--with-xf86vmode-ext" "--with-xf86gamma-ext" "--with-randr-ext"
-      "--with-xshm-ext" "--with-xdbe-ext" "--without-readdisplay"
-      "--with-x-app-defaults=\${out}/share/xscreensaver/app-defaults"
-    ];
-
-  preConfigure =
-    ''
-      sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' \
-        -i driver/Makefile.in po/Makefile.in.in
-    '';
-
-  meta = {
-    homepage = http://www.jwz.org/xscreensaver/;
-    description = "A set of screensavers";
-    maintainers = with stdenv.lib.maintainers; [ raskin urkud ];
-    platforms = stdenv.lib.platforms.allBut "i686-cygwin";
-  };
-}