mandoc: 1.13.4 -> 1.14.4

This commit is contained in:
Brayden Banks 2018-08-26 18:12:59 -07:00
parent b7e0c40d29
commit a28dc898a5
2 changed files with 11 additions and 5 deletions

View file

@ -425,6 +425,11 @@
github = "Baughn";
name = "Svein Ove Aas";
};
bb010g = {
email = "me@bb010g.com";
github = "bb010g";
name = "Brayden Banks";
};
bbarker = {
email = "brandon.barker@gmail.com";
github = "bbarker";

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mandoc-${version}";
version = "1.13.4";
version = "1.14.4";
src = fetchurl {
url = "http://mdocml.bsd.lv/snapshots/mdocml-${version}.tar.gz";
sha256 = "1vz0g5nvjbz1ckrg9cn6ivlnb13bcl1r6nc4yzb7300qvfnw2m8a";
url = "https://mandoc.bsd.lv/snapshots/mandoc-${version}.tar.gz";
sha256 = "24eb72103768987dcc63b53d27fdc085796330782f44b3b40c4660b1e1ee9b9c";
};
buildInputs = [ zlib ];
@ -26,10 +26,11 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
homepage = http://mdocml.bsd.lv/;
homepage = https://mandoc.bsd.lv/;
description = "suite of tools compiling mdoc and man";
downloadPage = "http://mandoc.bsd.lv/snapshots/";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ ramkromberg ];
maintainers = with maintainers; [ bb010g ramkromberg ];
};
}