nixpkgs/pkgs/applications/editors/wily/default.nix

27 lines
587 B
Nix
Raw Normal View History

2016-07-04 18:12:04 +00:00
{ 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 ];
};
}