biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / editors / wily / default.nix
blob0e883a51210af42bbc8db7a41bdede26534d93f8
1 { lib, stdenv, fetchurl, libX11, libXt } :
3 stdenv.mkDerivation rec {
4   version = "0.13.42";
5   pname = "wily";
7   src = fetchurl {
8     url = "mirror://sourceforge/wily/${pname}-${version}.tar.gz";
9     sha256 = "1jy4czk39sh365b0mjpj4d5wmymj98x163vmwzyx3j183jqrhm2z";
10   };
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"
18   ]);
20   preInstall = ''
21     mkdir -p $out/bin
22   '';
24   meta = with lib; {
25     description = "An emulation of ACME";
26     homepage = "http://wily.sourceforge.net";
27     license = licenses.artistic1;
28     maintainers = [ maintainers.vrthra ];
29     platforms = platforms.unix;
30     mainProgram = "wily";
31   };