drop lunchy-go
2 files changed, 0 insertions(+), 38 deletions(-)
changed files
M README.md → README.md
@@ -8,11 +8,6 @@ - Version: 0.3.7 - Homepage: https://github.com/scullionw/dirstat-rs - Description: Fastest(?) disk usage cli, similar to windirstat -### lunchy-go -- Version: 0.2.1-unstable-2022-02-12 -- Homepage: https://github.com/sosedoff/lunchy-go -- Description: A friendly wrapper for macOS launchctl. - ### projectdo - Version: 1.0.0 - Homepage: https://github.com/paldepind/projectdo
D pkgs/by-directory/lunchy-go/package.nix
@@ -1,33 +0,0 @@ -{ - lib, - buildGoModule, - fetchFromGitHub, -}: - -buildGoModule { - pname = "lunchy-go"; - version = "0.2.1-unstable-2022-02-12"; - - src = fetchFromGitHub { - owner = "sosedoff"; - repo = "lunchy-go"; - rev = "756ad7892ca91763c9c1e70ff9c6570607843725"; - hash = "sha256-YEaYtUH2bOIJ9I4JXcFAydCx30l11N8gszr7UlnqbF0="; - }; - - vendorHash = null; - - ldflags = [ "-s" ]; - - postInstall = '' - mv $out/bin/lunchy-go $out/bin/lunchy - ''; - - meta = { - description = "A friendly wrapper for macOS launchctl."; - homepage = "https://github.com/sosedoff/lunchy-go"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [ alinnow ]; - mainProgram = "lunchy-go"; - }; -}