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