mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
b36095578c
Some patches can be removed.
I updated it because the scroll wheel was going the oposite direction in ddd.
https://bugs.launchpad.net/ubuntu/+source/ddd/+bug/37664
(cherry picked from commit 0115853aa9
)
23 lines
707 B
Nix
23 lines
707 B
Nix
{stdenv, fetchurl, xlibsWrapper, libXp, libXau}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lesstif-0.95.0-p2";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/lesstif/lesstif-0.95.2.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
|
|
# render_table_crash shows up in 'arb'. The same patches appear
|
|
# in Debian, so we assume they have been sent upstream.
|
|
#
|
|
patches = [
|
|
./c-missing_xm_h.patch
|
|
./c-render_table_crash.patch
|
|
./c-xpmpipethrough.patch
|
|
];
|
|
}
|