Skip to content

Commit 6428223

Browse files
cgreen: take maintenance
The old maintainer looks inactive.
1 parent 5c980f9 commit 6428223

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
{ stdenv, lib, fetchFromGitHub, cmake }:
1+
{ lib
2+
, stdenv
3+
, fetchFromGitHub
4+
, cmake
5+
}:
26

3-
stdenv.mkDerivation rec {
7+
stdenv.mkDerivation (self: {
48
pname = "cgreen";
59
version = "1.6.2";
610

711
src = fetchFromGitHub {
812
owner = "cgreen-devs";
913
repo = "cgreen";
10-
rev = version;
14+
rev = self.version;
1115
sha256 = "sha256-beaCoyDCERb/bdKcKS7dRQHlI0auLOStu3cZr1dhubg=";
1216
};
1317

@@ -19,11 +23,11 @@ stdenv.mkDerivation rec {
1923

2024
nativeBuildInputs = [ cmake ];
2125

22-
meta = with lib; {
26+
meta = {
2327
homepage = "https://github.com/cgreen-devs/cgreen";
2428
description = "The Modern Unit Test and Mocking Framework for C and C++";
25-
license = licenses.isc;
26-
maintainers = [ maintainers.nichtsfrei ];
27-
platforms = platforms.unix;
29+
license = lib.licenses.isc;
30+
maintainers = [ lib.maintainers.AndersonTorres ];
31+
platforms = lib.platforms.unix;
2832
};
29-
}
33+
})

0 commit comments

Comments
 (0)