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