Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 36 lines 669 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 cmake, 6 pkg-config, 7 libxml2, 8 libzip, 9}: 10 11stdenv.mkDerivation rec { 12 pname = "ebook-tools"; 13 version = "0.2.2"; 14 15 src = fetchurl { 16 url = "mirror://sourceforge/ebook-tools/ebook-tools-${version}.tar.gz"; 17 sha256 = "1bi7wsz3p5slb43kj7lgb3r6lb91lvb6ldi556k4y50ix6b5khyb"; 18 }; 19 20 nativeBuildInputs = [ 21 cmake 22 pkg-config 23 ]; 24 buildInputs = [ 25 libxml2 26 libzip 27 ]; 28 29 meta = with lib; { 30 homepage = "http://ebook-tools.sourceforge.net"; 31 description = "Tools and library for dealing with various ebook file formats"; 32 maintainers = [ ]; 33 platforms = platforms.all; 34 license = licenses.mit; 35 }; 36}