3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/unpackerr/default.nix

25 lines
716 B
Nix
Raw Normal View History

2021-05-18 08:07:09 +01:00
{ lib, stdenv, fetchFromGitHub, buildGoModule, Cocoa, WebKit }:
2021-05-13 12:16:40 +01:00
buildGoModule rec {
pname = "unpackerr";
2021-08-14 17:51:50 +01:00
version = "0.9.7";
2021-05-13 12:16:40 +01:00
src = fetchFromGitHub {
owner = "davidnewhall";
repo = "unpackerr";
rev = "v${version}";
2021-08-14 17:51:50 +01:00
sha256 = "sha256-OJDFPSXbJffiKW1SmMptPxj69YU7cuOU1LgIiInurCM=";
2021-05-13 12:16:40 +01:00
};
2021-08-14 17:51:50 +01:00
vendorSha256 = "sha256-n8gRefr+MyiSaATG1mZrS3lx4oDEfbQ1LQxQ6vp5l0Y=";
2021-05-13 12:16:40 +01:00
2021-05-18 08:07:09 +01:00
buildInputs = lib.optionals stdenv.isDarwin [ Cocoa WebKit ];
2021-05-13 12:16:40 +01:00
meta = with lib; {
description = "Extracts downloads for Radarr, Sonarr, Lidarr - Deletes extracted files after import";
homepage = "https://github.com/davidnewhall/unpackerr";
maintainers = with maintainers; [ nullx76 ];
license = licenses.mit;
};
}