mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
hakuneko: init at 1.3.12
This commit is contained in:
parent
e6e1e69b4f
commit
1bbda4989c
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/misc/hakuneko/default.nix
Normal file
25
pkgs/tools/misc/hakuneko/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -12873,6 +12873,8 @@ in
|
|||
|
||||
hackrf = callPackage ../applications/misc/hackrf { };
|
||||
|
||||
hakuneko = callPackage ../tools/misc/hakuneko { };
|
||||
|
||||
hamster-time-tracker = callPackage ../applications/misc/hamster-time-tracker {
|
||||
inherit (pythonPackages) pyxdg pygtk dbus sqlite3;
|
||||
inherit (gnome) gnome_python;
|
||||
|
|
Loading…
Reference in a new issue