cgreen: take maintenance

The old maintainer looks inactive.
This commit is contained in:
Anderson Torres 2023-03-04 08:50:31 -03:00
parent 5c980f9825
commit 6428223c0e

View file

@ -1,13 +1,17 @@
{ stdenv, lib, fetchFromGitHub, cmake }: { lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec { stdenv.mkDerivation (self: {
pname = "cgreen"; pname = "cgreen";
version = "1.6.2"; version = "1.6.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cgreen-devs"; owner = "cgreen-devs";
repo = "cgreen"; repo = "cgreen";
rev = version; rev = self.version;
sha256 = "sha256-beaCoyDCERb/bdKcKS7dRQHlI0auLOStu3cZr1dhubg="; sha256 = "sha256-beaCoyDCERb/bdKcKS7dRQHlI0auLOStu3cZr1dhubg=";
}; };
@ -19,11 +23,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
meta = with lib; { meta = {
homepage = "https://github.com/cgreen-devs/cgreen"; homepage = "https://github.com/cgreen-devs/cgreen";
description = "The Modern Unit Test and Mocking Framework for C and C++"; description = "The Modern Unit Test and Mocking Framework for C and C++";
license = licenses.isc; license = lib.licenses.isc;
maintainers = [ maintainers.nichtsfrei ]; maintainers = [ lib.maintainers.AndersonTorres ];
platforms = platforms.unix; platforms = lib.platforms.unix;
}; };
} })