2016-11-13 17:12:04 +00:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "getxbook";
|
2016-11-13 17:12:04 +00:00
|
|
|
version = "1.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://njw.me.uk/getxbook/${pname}-${version}.tar.xz";
|
2016-11-13 17:12:04 +00:00
|
|
|
sha256 = "0ihwrx4gspj8l7fc8vxch6dpjrw1lvv9z3c19f0wxnmnxhv1cjvs";
|
|
|
|
};
|
|
|
|
|
2019-08-25 18:30:17 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=format-truncation" "-Wno-error=deprecated-declarations" ];
|
2019-01-11 03:20:06 +00:00
|
|
|
|
2016-11-13 17:12:04 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|