mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
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.
This commit is contained in:
parent
b5ee55f81f
commit
6521957bf4
1 changed files with 4 additions and 5 deletions
|
@ -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.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue