From c5f54786a1b785d4aa018edbd1ff229c36716ee4 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Mon, 4 Jul 2016 11:12:04 -0700 Subject: wily: init at 0.13.42 --- pkgs/applications/editors/wily/default.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/applications/editors/wily/default.nix (limited to 'pkgs/applications/editors/wily') diff --git a/pkgs/applications/editors/wily/default.nix b/pkgs/applications/editors/wily/default.nix new file mode 100644 index 0000000000000..fb4ae6afc097f --- /dev/null +++ b/pkgs/applications/editors/wily/default.nix @@ -0,0 +1,26 @@ +{ 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 ]; + }; +} -- cgit 1.4.1