nixpkgs/pkgs/applications/editors/wily/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

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;
};
}