File tree Expand file tree Collapse file tree
pkgs/development/libraries/cgreen Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ } )
You can’t perform that action at this time.
0 commit comments