about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/wily
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/wily')
-rw-r--r--nixpkgs/pkgs/applications/editors/wily/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/wily/default.nix b/nixpkgs/pkgs/applications/editors/wily/default.nix
new file mode 100644
index 000000000000..74d0bc156758
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/wily/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchurl, libX11, libXt } :
+
+stdenv.mkDerivation rec {
+  version = "0.13.42";
+  pname = "wily";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/wily/${pname}-${version}.tar.gz";
+    sha256 = "1jy4czk39sh365b0mjpj4d5wmymj98x163vmwzyx3j183jqrhm2z";
+  };
+
+  buildInputs = [ libX11 libXt ];
+
+  configureFlags = [ "--prefix=$(out)" ];
+
+  preInstall = ''
+    mkdir -p $out/bin
+  '';
+
+  meta = with lib; {
+    description = "An emulation of ACME";
+    homepage = "http://wily.sourceforge.net";
+    license = licenses.artistic1;
+    maintainers = [ maintainers.vrthra ];
+    platforms = platforms.unix;
+    mainProgram = "wily";
+  };
+}