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

27 lines
672 B
Nix
Raw Normal View History

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