mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
subberthehut: init at 20 (#45366)
This commit is contained in:
parent
d5e2f91ec8
commit
847291228f
|
@ -1970,6 +1970,11 @@
|
|||
github = "jpotier";
|
||||
name = "Martin Potier";
|
||||
};
|
||||
jqueiroz = {
|
||||
email = "nixos@johnjq.com";
|
||||
github = "jqueiroz";
|
||||
name = "Jonathan Queiroz";
|
||||
};
|
||||
jraygauthier = {
|
||||
email = "jraygauthier@gmail.com";
|
||||
github = "jraygauthier";
|
||||
|
|
28
pkgs/tools/misc/subberthehut/default.nix
Normal file
28
pkgs/tools/misc/subberthehut/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, fetchFromGitHub, pkgconfig, xmlrpc_c, glib, zlib }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "subberthehut-${version}";
|
||||
version = "20";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mus65";
|
||||
repo = "subberthehut";
|
||||
rev = version;
|
||||
sha256 = "19prdqbk19h0wak318g2jn1mnfm7l7f83a633bh0rhskysmqrsj1";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ xmlrpc_c glib zlib ];
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 subberthehut $out/bin/subberthehut
|
||||
install -Dm644 bash_completion $out/share/bash-completion/completions/subberthehut
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/mus65/subberthehut;
|
||||
description = "An OpenSubtitles.org downloader";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ jqueiroz ];
|
||||
};
|
||||
}
|
|
@ -5302,6 +5302,8 @@ with pkgs;
|
|||
|
||||
su-exec = callPackage ../tools/security/su-exec {};
|
||||
|
||||
subberthehut = callPackage ../tools/misc/subberthehut { };
|
||||
|
||||
subsurface = libsForQt5.callPackage ../applications/misc/subsurface { };
|
||||
|
||||
sudo = callPackage ../tools/security/sudo { };
|
||||
|
|
Loading…
Reference in a new issue