-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
and add myself as maintainer
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]; | ||
}; | ||
} |