doas: 6.0 -> 6.6.1

https://github.com/Duncaen/OpenDoas/compare/v6.0...v6.6.1

There are a decent chunk of changes in there. I'm mostly interested in
5debef098b7ebba67da5db9fbb020a7cd0f90a7f, which fixes the parsing of
/proc/$pid/stat that is used to implement timestamping.
This commit is contained in:
Cole Helbling 2020-02-09 18:10:24 -08:00 committed by adisbladis
parent afc42a843d
commit cf9a8bcc99
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -1,15 +1,19 @@
{ stdenv, lib, fetchFromGitHub, bison, pam }:
{ stdenv
, lib
, fetchFromGitHub
, bison
, pam
}:
stdenv.mkDerivation rec {
pname = "doas";
version = "6.0";
version = "6.6.1";
src = fetchFromGitHub {
owner = "Duncaen";
repo = "OpenDoas";
rev = "v${version}";
sha256 = "1j50l3jvbgvg8vmp1nx6vrjxkbj5bvfh3m01bymzfn25lkwwhz1x";
sha256 = "07kkc5729p654jrgfsc8zyhiwicgmq38yacmwfvay2b3gmy728zn";
};
# otherwise confuses ./configure
@ -26,6 +30,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/Duncaen/OpenDoas";
license = licenses.isc;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
maintainers = with maintainers; [ cole-h cstrahan ];
};
}