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