nixpkgs/pkgs/applications/misc/verbiste/default.nix

27 lines
670 B
Nix
Raw Normal View History

2017-04-07 22:24:06 +00:00
{ stdenv, fetchurl, pkgconfig, libgnomeui, libxml2 }:
stdenv.mkDerivation rec {
pname = "verbiste";
2017-04-07 22:24:06 +00:00
version = "0.1.46";
2017-04-07 22:24:06 +00:00
src = fetchurl {
url = "https://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
sha256 = "13l8b8mbkdds955sn42hzrjzj48lg1drpd7vhpcjxadckbvlh1p0";
2017-04-07 22:24:06 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libgnomeui libxml2 ];
2017-11-15 14:42:21 +00:00
enableParallelBuilding = true;
2017-04-07 22:24:06 +00:00
meta = with stdenv.lib; {
homepage = http://sarrazip.com/dev/verbiste.html;
description = "French and Italian verb conjugator";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
};
}