summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-09-15 10:02:10 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-09-15 10:03:23 +0200
commit6521957bf4057806ca01efdd92406b41c10a38c2 (patch)
treeba5aee54d6dad45316bf1eee2fe94d6c56d84bf4
parentb5ee55f81f9f65f15f9b807b4de1380a7f477baf (diff)
downloadnixpkgs-6521957bf4057806ca01efdd92406b41c10a38c2.tar
nixpkgs-6521957bf4057806ca01efdd92406b41c10a38c2.tar.gz
nixpkgs-6521957bf4057806ca01efdd92406b41c10a38c2.tar.bz2
nixpkgs-6521957bf4057806ca01efdd92406b41c10a38c2.tar.lz
nixpkgs-6521957bf4057806ca01efdd92406b41c10a38c2.tar.xz
nixpkgs-6521957bf4057806ca01efdd92406b41c10a38c2.tar.zst
nixpkgs-6521957bf4057806ca01efdd92406b41c10a38c2.zip
lesstif: correct the version
... to correspond to what is really downloaded and built.
Also, the 2006 comment was no longer correct, as the version is from 2009.
-rw-r--r--pkgs/development/libraries/lesstif/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/lesstif/default.nix b/pkgs/development/libraries/lesstif/default.nix
index f5c959bba7a..67263d5ff5e 100644
--- a/pkgs/development/libraries/lesstif/default.nix
+++ b/pkgs/development/libraries/lesstif/default.nix
@@ -1,16 +1,15 @@
 {stdenv, fetchurl, xlibsWrapper, libXp, libXau}:
 
-stdenv.mkDerivation {
-  name = "lesstif-0.95.0-p2";
+stdenv.mkDerivation rec {
+  name = "lesstif-0.95.2";
   src = fetchurl {
-    url = mirror://sourceforge/lesstif/lesstif-0.95.2.tar.bz2;
+    url = "mirror://sourceforge/lesstif/${name}.tar.bz2";
     sha256 = "1qzpxjjf7ri1jzv71mvq5m9g8hfaj5yzwp30rwxlm6n2b24a6jpb";
   };
   buildInputs = [xlibsWrapper];
   propagatedBuildInputs = [libXp libXau];
 
-  # The last stable release of lesstif was in June 2006. These
-  # patches fix a number of later issues - in particular the 
+  # These patches fix a number of later issues - in particular the
   # render_table_crash shows up in 'arb'. The same patches appear
   # in Debian, so we assume they have been sent upstream.
   #