summary refs log tree commit diff
path: root/pkgs/tools/misc/hakuneko
diff options
context:
space:
mode:
authorRuben Astudillo <ruben.astud@gmail.com>2015-08-12 12:43:33 -0300
committerRuben Astudillo <ruben.astud@gmail.com>2016-05-20 12:47:01 -0400
commit1bbda4989c6e1f0bd1c26c78eb384b4009f8c097 (patch)
tree156f8a8705a38bd9eab70476b454a9c91af8245e /pkgs/tools/misc/hakuneko
parente6e1e69b4f9518b77921272845d85404e9c5c31c (diff)
downloadnixlib-1bbda4989c6e1f0bd1c26c78eb384b4009f8c097.tar
nixlib-1bbda4989c6e1f0bd1c26c78eb384b4009f8c097.tar.gz
nixlib-1bbda4989c6e1f0bd1c26c78eb384b4009f8c097.tar.bz2
nixlib-1bbda4989c6e1f0bd1c26c78eb384b4009f8c097.tar.lz
nixlib-1bbda4989c6e1f0bd1c26c78eb384b4009f8c097.tar.xz
nixlib-1bbda4989c6e1f0bd1c26c78eb384b4009f8c097.tar.zst
nixlib-1bbda4989c6e1f0bd1c26c78eb384b4009f8c097.zip
hakuneko: init at 1.3.12
Diffstat (limited to 'pkgs/tools/misc/hakuneko')
-rw-r--r--pkgs/tools/misc/hakuneko/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/misc/hakuneko/default.nix b/pkgs/tools/misc/hakuneko/default.nix
new file mode 100644
index 000000000000..a70f69c47834
--- /dev/null
+++ b/pkgs/tools/misc/hakuneko/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, wxGTK, openssl, curl }:
+
+stdenv.mkDerivation rec {
+  name = "hakuneko-${version}";
+  version = "1.3.12";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/hakuneko/hakuneko_${version}_src.tar.gz";
+    sha256 = "24e7281a7f68b24e5260ee17ecfa1c5a3ffec408c8ea6e0121ae6c161898b698";
+  };
+
+  preConfigure = ''
+    substituteInPlace ./configure \
+       --replace /bin/bash $shell
+    '';
+
+  buildInputs = [ wxGTK openssl curl ];
+
+  meta = {
+    description = "Manga downloader";
+    homepage = http://sourceforge.net/projects/hakuneko/;
+    license = stdenv.lib.licenses.mit;
+    platforms = stdenv.lib.platforms.linux;
+  };
+}