Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / verbiste / default.nix
blob9f27f8e73d7f3a4fa0447cdbb023a243d3c59cda
1 { lib, stdenv, fetchurl, pkg-config, libgnomeui, libxml2 }:
3 stdenv.mkDerivation rec {
4   pname = "verbiste";
6   version = "0.1.47";
8   src = fetchurl {
9     url = "https://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
10     sha256 = "02kzin3pky2q2jnihrch8y0hy043kqqmzxq8j741x80kl0j1qxkm";
11   };
13   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ libgnomeui 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   };