summary refs log tree commit diff
path: root/pkgs/development/libraries/lesstif/default.nix
blob: df98c4244b9bbd792f7cfe24a3f4b13f7e259e01 (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 = mirror://sourceforge/lesstif/lesstif-0.95.0.tar.bz2;
    md5 = "ab895165c149d7f95843c7584b1c7ad4";
  };
  buildInputs = [x11];
  propagatedBuildInputs = [libXp libXau];
  patches = [./c-linkage.patch];
}