vscode-extensions.capatech.betacode: init at 0.1.10 (#355720)
[NixPkgs.git] / pkgs / servers / unpackerr / default.nix
blob30091834a8567cfc8a3a3be6de930d8bc801571e
1 { lib, stdenv, fetchFromGitHub, buildGoModule, Cocoa, WebKit }:
3 buildGoModule rec {
4   pname = "unpackerr";
5   version = "0.14.5";
7   src = fetchFromGitHub {
8     owner = "davidnewhall";
9     repo = "unpackerr";
10     rev = "v${version}";
11     sha256 = "sha256-uQwpdgV6ksouW9JTuiiuQjxBGOE/ypDW769kNJgWrHw=";
12   };
14   vendorHash = "sha256-wWIw0gNn5tqRq0udzPy/n2OkiIVESpSotOSn2YlBNS4=";
16   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Cocoa WebKit ];
18   ldflags = [ "-s" "-w" "-X golift.io/version.Version=${version}" ];
20   meta = with lib; {
21     description = "Extracts downloads for Radarr, Sonarr, Lidarr - Deletes extracted files after import";
22     homepage = "https://github.com/davidnewhall/unpackerr";
23     maintainers = [ ];
24     license = licenses.mit;
25     mainProgram = "unpackerr";
26   };