mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
24 lines
592 B
Nix
24 lines
592 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "godu";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "viktomas";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-fJeSUAuNELZZ1DcybNsYd2ZX93VYWsLum5tHp68ZVlo=";
|
|
};
|
|
|
|
vendorHash = "sha256-8cZCeZ0gqxqbwB0WuEOFmEUNQd3/KcLeN0eLGfWG8BY=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "Utility helping to discover large files/folders";
|
|
homepage = "https://github.com/viktomas/godu";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rople380 ];
|
|
};
|
|
}
|