-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155076 from cameronfyfe/add-ets
ets: init at 0.2.1
- Loading branch information
Showing
3 changed files
with
50 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 |
---|---|---|
|
@@ -1953,6 +1953,12 @@ | |
githubId = 7435854; | ||
name = "Victor Calvert"; | ||
}; | ||
cameronfyfe = { | ||
email = "[email protected]"; | ||
github = "cameronfyfe"; | ||
githubId = 21013281; | ||
name = "Cameron Fyfe"; | ||
}; | ||
cameronnemo = { | ||
email = "[email protected]"; | ||
github = "cameronnemo"; | ||
|
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,42 @@ | ||
{ lib, buildGoModule, fetchFromGitHub, fetchpatch, installShellFiles }: | ||
|
||
buildGoModule rec { | ||
pname = "ets"; | ||
version = "0.2.1"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "zmwangx"; | ||
repo = pname; | ||
rev = "v${version}"; | ||
sha256 = "sha256-XWIDo5msTMTLr60x1R9cwsiZIDG6G+uHWx8idt4F2iA="; | ||
}; | ||
|
||
# https://github.com/zmwangx/ets/pull/18/ | ||
patches = [ (fetchpatch { | ||
url = "https://github.com/zmwangx/ets/commit/600ec17a9c86ca63cd022d00439cdc4978e2afa9.patch"; | ||
sha256 = "sha256-SGCISHkWNFubgKkQYx8Vf5/fknNDfPNYkSuw1mMhZaE="; | ||
}) ]; | ||
|
||
vendorSha256 = "sha256-+8dXfqOu8XTw2uEx3GAynQSHtzifejZtddr1CdxrupA="; | ||
|
||
ldflags = [ "-s" "-w" "-X main.version=v${version}-nixpkgs" ]; | ||
|
||
nativeBuildInputs = [ installShellFiles ]; | ||
|
||
preBuild = '' | ||
rm -rf fixtures | ||
''; | ||
|
||
postInstall = '' | ||
installManPage ets.1 | ||
''; | ||
|
||
doCheck = false; | ||
|
||
meta = with lib; { | ||
description = "Command output timestamper"; | ||
homepage = "https://github.com/zmwangx/ets/"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ cameronfyfe ]; | ||
}; | ||
} |
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