2017-04-07 15:24:06 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libgnomeui, libxml2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "verbiste";
|
2017-04-07 15:24:06 -07:00
|
|
|
|
2019-11-09 06:56:03 -08:00
|
|
|
version = "0.1.47";
|
2017-04-07 15:24:06 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
|
2019-11-09 06:56:03 -08:00
|
|
|
sha256 = "02kzin3pky2q2jnihrch8y0hy043kqqmzxq8j741x80kl0j1qxkm";
|
2017-04-07 15:24:06 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ libgnomeui libxml2 ];
|
|
|
|
|
2017-11-15 06:42:21 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-04-07 15:24:06 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://sarrazip.com/dev/verbiste.html";
|
2017-04-07 15:24:06 -07:00
|
|
|
description = "French and Italian verb conjugator";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
};
|
|
|
|
}
|