tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
verbiste: 0.1.48 -> 0.1.49
kyehn
5 months ago
9b620f96
8c5f8032
+9
-10
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ve
verbiste
package.nix
+9
-10
pkgs/by-name/ve/verbiste/package.nix
···
7
7
libxml2,
8
8
}:
9
9
10
10
-
stdenv.mkDerivation rec {
10
10
+
stdenv.mkDerivation (finalAttrs: {
11
11
pname = "verbiste";
12
12
-
13
13
-
version = "0.1.48";
12
12
+
version = "0.1.49";
14
13
15
14
src = fetchurl {
16
16
-
url = "https://perso.b2b2c.ca/~sarrazip/dev/verbiste-${version}.tar.gz";
17
17
-
hash = "sha256-qp0OFpH4DInWjzraDI6+CeKh85JkbwVYHlJruIrGnBM=";
15
15
+
url = "http://sarrazip.com/dev/verbiste-${finalAttrs.version}.tar.gz";
16
16
+
hash = "sha256-SnVhM8DronsajiNtrlOuFzJWBbpIb+bLLrK+mWZoP6U=";
18
17
};
19
18
20
19
nativeBuildInputs = [ pkg-config ];
···
26
25
27
26
enableParallelBuilding = true;
28
27
29
29
-
meta = with lib; {
28
28
+
meta = {
30
29
homepage = "http://sarrazip.com/dev/verbiste.html";
31
30
description = "French and Italian verb conjugator";
32
32
-
license = licenses.gpl2Plus;
33
33
-
platforms = platforms.linux;
34
34
-
maintainers = with maintainers; [ orivej ];
31
31
+
license = lib.licenses.gpl2Plus;
32
32
+
platforms = lib.platforms.linux;
33
33
+
maintainers = with lib.maintainers; [ orivej ];
35
34
};
36
36
-
}
35
35
+
})