1 { lib, stdenv, fetchurl, libX11, libXt } :
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/wily/${pname}-${version}.tar.gz";
9 sha256 = "1jy4czk39sh365b0mjpj4d5wmymj98x163vmwzyx3j183jqrhm2z";
12 buildInputs = [ libX11 libXt ];
14 env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.cc.isClang [
15 "-Wno-error=implicit-int"
16 "-Wno-error=implicit-function-declaration"
17 "-Wno-error=incompatible-function-pointer-types"
25 description = "An emulation of ACME";
26 homepage = "http://wily.sourceforge.net";
27 license = licenses.artistic1;
28 maintainers = [ maintainers.vrthra ];
29 platforms = platforms.unix;