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

stdenv.mkDerivation {
  name = "lesstif-0.94.4";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/lesstif-0.94.4.tar.bz2;
    md5 = "3096ca456c0bc299d895974d307c82d8";
  };
  buildInputs = [x11];
  propagatedBuildInputs = [libXp];
}