mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
26 lines
600 B
Nix
26 lines
600 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "claws";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = version;
|
|
owner = "thehowl";
|
|
repo = pname;
|
|
hash = "sha256-3zzUBeYfu9x3vRGX1DionLnAs1e44tFj8Z1dpVwjdCg=";
|
|
};
|
|
|
|
vendorHash = "sha256-FP+3Rw5IdCahhx9giQrpepMMtF1pWcyjNglrlu9ju0Q=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/thehowl/claws";
|
|
description = "Interactive command line client for testing websocket servers";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "claws";
|
|
};
|
|
}
|