evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ji / jigdo / package.nix
blob2bf1e193e5de671f06a0fa2a1e5bfe0b2c538298
1 { lib
2 , stdenv
3 , fetchurl
4 , gettext
5 , bzip2
6 , db
7 , zlib
8 }:
10 stdenv.mkDerivation rec {
11   pname = "jigdo";
12   version = "0.8.2";
14   src = fetchurl {
15     url = "https://www.einval.com/~steve/software/jigdo/download/jigdo-${version}.tar.xz";
16     hash = "sha256-NvKG2T+mtr94hfSJnJl4lNIdo6YhdlkqwWLZxqhkT54=";
17   };
19   # unable to parse jigdo-file.sgml
20   postPatch = ''
21     sed \
22       -e "s@.*cd doc.*@@g" \
23       -e "s@.*/man1.*@\t\t:@g" \
24       -i Makefile.in
25   '';
27   strictDeps = true;
29   nativeBuildInputs = [
30     gettext
31   ];
33   buildInputs = [
34     bzip2
35     db
36     zlib
37   ];
39   meta = with lib; {
40     description = "Download utility that can fetch files from several sources simultaneously";
41     homepage = "https://www.einval.com/~steve/software/jigdo/";
42     changelog = "https://git.einval.com/cgi-bin/gitweb.cgi?p=jigdo.git;a=blob;f=changelog;hb=refs/tags/${version}";
43     license = licenses.gpl2Only;
44     maintainers = with maintainers; [ wegank ];
45     platforms = platforms.unix;
46   };