all repos — nix-packages @ b3a21e585d1cee9b83dcc82ee1e8434358ec97c0

My personal collection of packages for nix

drop lunchy-go

Alin
commit

b3a21e585d1cee9b83dcc82ee1e8434358ec97c0

parent

cfa368c34d7066c35f618c192673bb0f45d9ce26

2 files changed, 0 insertions(+), 38 deletions(-)

changed files
M README.mdREADME.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"; - }; -}