verbiste: 0.1.48 -> 0.1.49

This commit is contained in:
kyehn
2025-08-30 22:56:47 +08:00
parent 8c5f803260
commit 9b620f96a7
+9 -10
View File
@@ -7,14 +7,13 @@
libxml2,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "verbiste";
version = "0.1.48";
version = "0.1.49";
src = fetchurl {
url = "https://perso.b2b2c.ca/~sarrazip/dev/verbiste-${version}.tar.gz";
hash = "sha256-qp0OFpH4DInWjzraDI6+CeKh85JkbwVYHlJruIrGnBM=";
url = "http://sarrazip.com/dev/verbiste-${finalAttrs.version}.tar.gz";
hash = "sha256-SnVhM8DronsajiNtrlOuFzJWBbpIb+bLLrK+mWZoP6U=";
};
nativeBuildInputs = [ pkg-config ];
@@ -26,11 +25,11 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with lib; {
meta = {
homepage = "http://sarrazip.com/dev/verbiste.html";
description = "French and Italian verb conjugator";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ orivej ];
};
}
})