Xaw3d: 1.5E -> 1.6.2, switch md5 to sha256, use X.org as the upstream

This commit is contained in:
Michael Raskin
2016-10-26 15:51:26 +02:00
parent ef9eeb8a2c
commit 5f4ab83015
4 changed files with 7 additions and 95 deletions
+7 -7
View File
@@ -1,14 +1,14 @@
{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex}:
{stdenv, fetchurl, xlibsWrapper, imake, gccmakedep, libXmu, libXpm, libXp, bison, flex, pkgconfig}:
stdenv.mkDerivation {
name = "Xaw3d-1.5E";
builder = ./builder.sh;
name = "Xaw3d-1.6.2";
src = fetchurl {
url = http://freshmeat.net/redir/xaw3d/11835/url_tgz/Xaw3d-1.5E.tar.gz;
md5 = "29ecfdcd6bcf47f62ecfd672d31269a1";
urls = [
ftp://ftp.x.org/pub/xorg/individual/lib/libXaw3d-1.6.tar.bz2
];
sha256 = "099kx6ni5vkgr3kf40glif8m6r1m1hq6hxqlqrblaj1w5cphh8hi";
};
patches = [./config.patch ./laylex.patch];
buildInputs = [imake gccmakedep libXpm libXp bison flex];
buildInputs = [imake gccmakedep libXpm libXp bison flex pkgconfig];
propagatedBuildInputs = [xlibsWrapper libXmu];
meta = {