summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-09-24 17:15:06 +0000
committerPeter Simons <simons@cryp.to>2009-09-24 17:15:06 +0000
commit39e8418a69a4255ac5514bf0b70d997f8060f06a (patch)
tree0dd2b65d93c5b6459ee050a23ecec937ca585463 /pkgs/applications/graphics
parentc1f7e5ff90e178cbe9324001c42ebc1934a538b5 (diff)
xscreensaver: updated to version 5.10
Version 5.07 doesn't exist upstream anymore. svn path=/nixpkgs/trunk/; revision=17403
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/xscreensaver/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/xscreensaver/default.nix b/pkgs/applications/graphics/xscreensaver/default.nix
index c8b550de52ed..2701892aa4a5 100644
--- a/pkgs/applications/graphics/xscreensaver/default.nix
+++ b/pkgs/applications/graphics/xscreensaver/default.nix
@@ -1,9 +1,9 @@
args : with args; let localDefs = builderDefs.passthru.function (args // rec {
- version = lib.attrByPath ["version"] "5.07" args;
+ version = lib.attrByPath ["version"] "5.10" args;
src = /* put a fetchurl here */
fetchurl {
url = "http://www.jwz.org/xscreensaver/xscreensaver-${version}.tar.gz";
- sha256 = "1dmd9gwwqr4rnhxl71x1wn8j3xgijbpf6ydx42xzrzxi0x6afl4c";
+ sha256 = "07zy157wqwgcapqycyv89yabxa8byk4p8jn3zlvhf7lx5w1xmval";
};
useConfig = true;
reqsList = [
@@ -22,14 +22,14 @@ args : with args; let localDefs = builderDefs.passthru.function (args // rec {
];
});
in with localDefs;
-let
+let
preConfigure = fullDepEntry ("
sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' "+
"-i driver/Makefile.in po/Makefile.in.in;
") ["minInit" "doUnpack"];
in
stdenv.mkDerivation rec {
- name = "xscreensaver-5.07";
+ name = "xscreensaver-5.10";
buildCommand = textClosure localDefs
[preConfigure doConfigure doMakeInstall doForceShare doPropagate];
meta = {
@@ -39,4 +39,3 @@ stdenv.mkDerivation rec {
platforms = stdenv.lib.platforms.allBut "i686-cygwin";
};
}
-