ets: 0.2.1 -> 0.3.0

kashw2 dbc2ce50 9f5a6d72

+6 -12
+6 -12
pkgs/tools/misc/ets/default.nix
··· 2 3 buildGoModule rec { 4 pname = "ets"; 5 - version = "0.2.1"; 6 7 src = fetchFromGitHub { 8 - owner = "zmwangx"; 9 - repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-XWIDo5msTMTLr60x1R9cwsiZIDG6G+uHWx8idt4F2iA="; 12 }; 13 14 - # https://github.com/zmwangx/ets/pull/18/ 15 - patches = [ (fetchpatch { 16 - url = "https://github.com/zmwangx/ets/commit/600ec17a9c86ca63cd022d00439cdc4978e2afa9.patch"; 17 - sha256 = "sha256-SGCISHkWNFubgKkQYx8Vf5/fknNDfPNYkSuw1mMhZaE="; 18 - }) ]; 19 - 20 - vendorHash = "sha256-+8dXfqOu8XTw2uEx3GAynQSHtzifejZtddr1CdxrupA="; 21 22 ldflags = [ "-s" "-w" "-X main.version=v${version}-nixpkgs" ]; 23 ··· 35 36 meta = with lib; { 37 description = "Command output timestamper"; 38 - homepage = "https://github.com/zmwangx/ets/"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ cameronfyfe ]; 41 mainProgram = "ets";
··· 2 3 buildGoModule rec { 4 pname = "ets"; 5 + version = "0.3.0"; 6 7 src = fetchFromGitHub { 8 + owner = "gdubicki"; 9 + repo = "ets"; 10 rev = "v${version}"; 11 + hash = "sha256-PowJ3ig8TfGx9P/PJPVBL8GsMh+gGZVt9l4Rf7Mqk00="; 12 }; 13 14 + vendorHash = "sha256-XHgdiXdp9aNEAc/Apvb64ExnpywjddWOw1scNKy+ico="; 15 16 ldflags = [ "-s" "-w" "-X main.version=v${version}-nixpkgs" ]; 17 ··· 29 30 meta = with lib; { 31 description = "Command output timestamper"; 32 + homepage = "https://github.com/gdubicki/ets/"; 33 license = licenses.mit; 34 maintainers = with maintainers; [ cameronfyfe ]; 35 mainProgram = "ets";