2021-01-21 09:00:13 -08:00
|
|
|
{lib, stdenv, fetchurl, fetchpatch}:
|
2010-02-09 01:09:25 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tre-0.8.0";
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://laurikari.net/tre/${name}.tar.gz";
|
2010-02-09 01:09:25 -08:00
|
|
|
sha256 = "1pd7qsa7vc3ybdc6h2gr4pm9inypjysf92kab945gg4qa6jp11my";
|
|
|
|
};
|
|
|
|
|
2016-11-02 03:42:01 -07:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "https://sources.debian.net/data/main/t/tre/0.8.0-6/debian/patches/03-cve-2016-8859";
|
2016-11-02 03:42:01 -07:00
|
|
|
sha256 = "0navhizym6qxd4gngrsslbij8x9r3s67p1jzzhvsnq6ky49j7w3p";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-08-02 09:06:29 -07:00
|
|
|
meta = {
|
2019-11-17 00:43:55 -08:00
|
|
|
description = "Lightweight and robust POSIX compliant regexp matching library";
|
|
|
|
homepage = "https://laurikari.net/tre/";
|
2021-01-21 09:00:13 -08:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = lib.licenses.bsd2;
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2010-02-09 01:09:25 -08:00
|
|
|
}
|