Skip to content

Commit

Permalink
gtest: init at 1.0.1
Browse files Browse the repository at this point in the history
and add myself as maintainer
  • Loading branch information
vivienCEA committed Apr 29, 2024
1 parent 7339827 commit 25d4892
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,8 @@ See `<nixpkgs/maintainers/scripts/check-maintainer-github-handles.sh>` for an ex
github = "Synthetica9";
githubId = 7075751;
};
vivien = {
email = "[email protected]";
name = "Vivien Loriot";
};
}
1 change: 1 addition & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ in
calc = callPackage ./epnix/support/calc {};
devlib2 = callPackage ./epnix/support/devlib2 {};
epics-systemd = callPackage ./epnix/support/epics-systemd {};
gtest = callPackage ./epnix/support/gtest {};
ipac = callPackage ./epnix/support/ipac {};
modbus = callPackage ./epnix/support/modbus {};
mrfioc2 = callPackage ./epnix/support/mrfioc2 {};
Expand Down
29 changes: 29 additions & 0 deletions pkgs/epnix/support/gtest/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
lib,
epnixLib,
mkEpicsPackage,
fetchFromGitHub,
local_config_site ? {},
local_release ? {},
}:
mkEpicsPackage {
pname = "gtest";
version = "1.0.1";
varname = "GTEST";

src = fetchFromGitHub {
owner = "epics-modules";
repo = "gtest";
rev = "v1.0.1";
hash = "sha256-cDZ4++AkUiOvsw4KkobyqKWLk2GzUSdDdWjLL7dr1ac=";
};

inherit local_release local_config_site;

meta = {
description = "EPICS module to adds the Google Test and Google Mock frameworks to EPICS";
homepage = "https://github.com/epics-modules/gtest";
license = epnixLib.licenses.epics;
maintainers = with epnixLib.maintainers; [vivien];
};
}

0 comments on commit 25d4892

Please sign in to comment.