2016-06-19 23:59:26 +00:00
|
|
|
{ stdenv, fetchurl, wxGTK30, openssl, curl }:
|
2015-08-12 15:43:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hakuneko-${version}";
|
2017-02-11 04:09:50 +00:00
|
|
|
version = "1.4.2";
|
2015-08-12 15:43:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/hakuneko/hakuneko_${version}_src.tar.gz";
|
2017-02-11 04:09:50 +00:00
|
|
|
sha256 = "76a63fa05e91b082cb5a70a8abacef005354e99978ff8b1369f7aa0af7615d52";
|
2015-08-12 15:43:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./configure \
|
|
|
|
--replace /bin/bash $shell
|
|
|
|
'';
|
|
|
|
|
2016-06-19 23:59:26 +00:00
|
|
|
buildInputs = [ wxGTK30 openssl curl ];
|
2015-08-12 15:43:33 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Manga downloader";
|
2017-08-02 21:50:51 +00:00
|
|
|
homepage = https://sourceforge.net/projects/hakuneko/;
|
2015-08-12 15:43:33 +00:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2018-01-01 06:37:34 +00:00
|
|
|
|
|
|
|
# This project was abandoned upstream.
|
|
|
|
broken = true;
|
2015-08-12 15:43:33 +00:00
|
|
|
};
|
|
|
|
}
|