Unverified Commit 180a8c94 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #219487 from atorres1985-contrib/quick-patches

Quick patches
parents 2a278943 abedfdd3
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -10722,12 +10722,6 @@
      fingerprint = "7BC1 77D9 C222 B1DC FB2F  0484 C061 089E FEBF 7A35";
    }];
  };
  nichtsfrei = {
    email = "philipp.eder@posteo.net";
    github = "nichtsfrei";
    githubId = 1665818;
    name = "Philipp Eder";
  };
  nickcao = {
    name = "Nick Cao";
    email = "nickcao@nichi.co";
+12 −8
Original line number Diff line number Diff line
{ stdenv, lib, fetchFromGitHub, cmake }:
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (self: {
  pname = "cgreen";
  version = "1.6.2";

  src = fetchFromGitHub {
    owner = "cgreen-devs";
    repo = "cgreen";
    rev = version;
    rev = self.version;
    sha256 = "sha256-beaCoyDCERb/bdKcKS7dRQHlI0auLOStu3cZr1dhubg=";
  };

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

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
  meta = {
    homepage = "https://github.com/cgreen-devs/cgreen";
    description = "The Modern Unit Test and Mocking Framework for C and C++";
    license = licenses.isc;
    maintainers = [ maintainers.nichtsfrei ];
    platforms = platforms.unix;
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.AndersonTorres ];
    platforms = lib.platforms.unix;
  };
}
})