depot/third_party/nixpkgs/pkgs/applications/misc/verbiste/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

26 lines
657 B
Nix

{ lib, stdenv, fetchurl, pkg-config, gtk2, libxml2 }:
stdenv.mkDerivation rec {
pname = "verbiste";
version = "0.1.48";
src = fetchurl {
url = "https://perso.b2b2c.ca/~sarrazip/dev/verbiste-${version}.tar.gz";
hash = "sha256-qp0OFpH4DInWjzraDI6+CeKh85JkbwVYHlJruIrGnBM=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk2 libxml2 ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "http://sarrazip.com/dev/verbiste.html";
description = "French and Italian verb conjugator";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
};
}