evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ve / verbiste / package.nix
blob2793ffcd0c639bd640a6c381c22e2a7eb9c4eb62
1 { lib, stdenv, fetchurl, pkg-config, gtk2, libxml2 }:
3 stdenv.mkDerivation rec {
4   pname = "verbiste";
6   version = "0.1.48";
8   src = fetchurl {
9     url = "https://perso.b2b2c.ca/~sarrazip/dev/verbiste-${version}.tar.gz";
10     hash = "sha256-qp0OFpH4DInWjzraDI6+CeKh85JkbwVYHlJruIrGnBM=";
11   };
13   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ gtk2 libxml2 ];
17   enableParallelBuilding = true;
19   meta = with lib; {
20     homepage = "http://sarrazip.com/dev/verbiste.html";
21     description = "French and Italian verb conjugator";
22     license = licenses.gpl2Plus;
23     platforms = platforms.linux;
24     maintainers = with maintainers; [ orivej ];
25   };