Unverified Commit 4a7a8c15 authored by maxine's avatar maxine Committed by GitHub
Browse files

Merge pull request #281705 from umlx5h/gtrash-init

gtrash: init at 0.0.5
parents 50bbfedc a20f6f4a
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -19316,6 +19316,11 @@
    githubId = 1607770;
    name = "Ulrik Strid";
  };
  umlx5h = {
    github = "umlx5h";
    githubId = 20206121;
    name = "umlx5h";
  };
  unclamped = {
    name = "Maru";
    email = "clear6860@tutanota.com";
+51 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:

buildGoModule rec {
  pname = "gtrash";
  version = "0.0.5";

  src = fetchFromGitHub {
    owner = "umlx5h";
    repo = "gtrash";
    rev = "v${version}";
    hash = "sha256-5+wcrU2mx/ZawMCSCU4xddMlMVpoIW/Duv7XqUVIDoo=";
  };

  vendorHash = "sha256-iWNuPxetYH9xJpf3WMoA5c50kII9DUpWvhTVSE1kSk0=";

  subPackages = [ "." ];

  # disabled because it is required to run on docker.
  doCheck = false;

  CGO_ENABLED = 0;
  GOFLAGS = [ "-trimpath" ];
  ldflags = [
    "-s"
    "-w"
    "-X main.version=${version}"
    "-X main.builtBy=nixpkgs"
  ];

  nativeBuildInputs = [ installShellFiles ];

  postInstall = ''
    installShellCompletion --cmd gtrash \
      --bash <($out/bin/gtrash completion bash) \
      --fish <($out/bin/gtrash completion fish) \
      --zsh <($out/bin/gtrash completion zsh)
  '';

  meta = with lib; {
    description = "A Trash CLI manager written in Go";
    homepage = "https://github.com/umlx5h/gtrash";
    changelog = "https://github.com/umlx5h/gtrash/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ umlx5h ];
    mainProgram = "gtrash";
  };
}