verbiste: 0.1.48 -> 0.1.49

kyehn 9b620f96 8c5f8032

+9 -10
+9 -10
pkgs/by-name/ve/verbiste/package.nix
··· 7 7 libxml2, 8 8 }: 9 9 10 - stdenv.mkDerivation rec { 10 + stdenv.mkDerivation (finalAttrs: { 11 11 pname = "verbiste"; 12 - 13 - version = "0.1.48"; 12 + version = "0.1.49"; 14 13 15 14 src = fetchurl { 16 - url = "https://perso.b2b2c.ca/~sarrazip/dev/verbiste-${version}.tar.gz"; 17 - hash = "sha256-qp0OFpH4DInWjzraDI6+CeKh85JkbwVYHlJruIrGnBM="; 15 + url = "http://sarrazip.com/dev/verbiste-${finalAttrs.version}.tar.gz"; 16 + hash = "sha256-SnVhM8DronsajiNtrlOuFzJWBbpIb+bLLrK+mWZoP6U="; 18 17 }; 19 18 20 19 nativeBuildInputs = [ pkg-config ]; ··· 26 25 27 26 enableParallelBuilding = true; 28 27 29 - meta = with lib; { 28 + meta = { 30 29 homepage = "http://sarrazip.com/dev/verbiste.html"; 31 30 description = "French and Italian verb conjugator"; 32 - license = licenses.gpl2Plus; 33 - platforms = platforms.linux; 34 - maintainers = with maintainers; [ orivej ]; 31 + license = lib.licenses.gpl2Plus; 32 + platforms = lib.platforms.linux; 33 + maintainers = with lib.maintainers; [ orivej ]; 35 34 }; 36 - } 35 + })