about summary refs log tree commit diff
path: root/pkgs/applications/editors/wily
diff options
context:
space:
mode:
authorRahul Gopinath <rahul@gopinath.org>2016-07-04 11:12:04 -0700
committerRahul Gopinath <rahul@gopinath.org>2016-07-04 11:19:11 -0700
commitc5f54786a1b785d4aa018edbd1ff229c36716ee4 (patch)
tree58635c2b31258b110aa585b5d5ab8bd9fd831d98 /pkgs/applications/editors/wily
parent89523c117b09eac8958db14ff68119dae17bf7b1 (diff)
wily: init at 0.13.42
Diffstat (limited to 'pkgs/applications/editors/wily')
-rw-r--r--pkgs/applications/editors/wily/default.nix26
1 files changed, 26 insertions, 0 deletions
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 ];
+  };
+}