getxbook: init at 1.2

This commit is contained in:
obadz 2016-11-13 17:12:04 +00:00
parent f9611cefc0
commit feb8a692a1
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "getxbook-${version}";
version = "1.2";
src = fetchurl {
url = "https://njw.me.uk/getxbook/${name}.tar.xz";
sha256 = "0ihwrx4gspj8l7fc8vxch6dpjrw1lvv9z3c19f0wxnmnxhv1cjvs";
};
buildInputs = [ openssl ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "A collection of tools to download books from Google Books";
homepage = https://njw.me.uk/getxbook/;
license = licenses.isc;
maintainers = with maintainers; [ obadz ];
platforms = platforms.all;
inherit version;
};
}

View File

@ -12994,6 +12994,8 @@ in
get_iplayer = callPackage ../applications/misc/get_iplayer {};
getxbook = callPackage ../applications/misc/getxbook {};
gimp_2_8 = callPackage ../applications/graphics/gimp/2.8.nix {
inherit (gnome2) libart_lgpl;
webkit = null;