summary refs log tree commit diff
path: root/pkgs/development/libraries/lesstif/default.nix
blob: 5012242870648de0a1e6d6bdd286d2776794054c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, x11, libXp, libXau}:

stdenv.mkDerivation {
  name = "lesstif-0.95";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/lesstif-0.95.0.tar.bz2;
    md5 = "ab895165c149d7f95843c7584b1c7ad4";
  };
  buildInputs = [x11];
  propagatedBuildInputs = [libXp libXau];
  patches = [./c-linkage.patch];
}