tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pcre2: 10.20 -> 10.21
Guillaume Maudoux
9 years ago
830b58f5
1badc603
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
pcre2
default.nix
+5
-5
pkgs/development/libraries/pcre2/default.nix
···
1
1
{ stdenv, fetchurl }:
2
2
3
3
-
stdenv.mkDerivation {
4
4
-
name = "pcre2-10.20";
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "pcre2-10.21";
5
5
src = fetchurl {
6
6
-
url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.20.tar.bz2";
7
7
-
sha256 = "0yj8mm9ll9zj3v47rvmmqmr1ybxk72rr2lym3rymdsf905qjhbik";
6
6
+
url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${name}.tar.bz2";
7
7
+
sha256 = "1q6lrj9b08l1q39vxipb0fi88x6ybvkr6439h8bjb9r8jd81fsn6";
8
8
};
9
9
10
10
configureFlags = [
···
14
14
];
15
15
16
16
meta = {
17
17
-
description = "Perl Compatible Regular Expressions";
17
17
+
description = "Perl Compatible Regular Expressions";
18
18
homepage = "http://www.pcre.org/";
19
19
license = stdenv.lib.licenses.bsd3;
20
20
maintainers = [ stdenv.lib.maintainers.ttuegel ];