21f17d69f6
Build-tested on x86_64 Linux & Mac.
28 lines
619 B
Nix
28 lines
619 B
Nix
{ stdenv, fetchurl, libX11, libXt } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.13.42";
|
|
name = "wily-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/wily/${name}.tar.gz";
|
|
sha256 = "1jy4czk39sh365b0mjpj4d5wmymj98x163vmwzyx3j183jqrhm2z";
|
|
};
|
|
|
|
buildInputs = [ libX11 libXt ];
|
|
|
|
configureFlags = [ "--prefix=$(out)" ];
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An emulation of ACME";
|
|
homepage = http://wily.sourceforge.net;
|
|
license = licenses.artistic1;
|
|
maintainers = [ maintainers.vrthra ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|