nixpkgs/pkgs/applications/video/subdl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
695 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchFromGitHub, python3 }:
2017-12-26 18:39:45 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "subdl";
version = "unstable-2017-11.06";
2017-12-26 18:39:45 +00:00
src = fetchFromGitHub {
owner = "alexanderwink";
repo = "subdl";
rev = "4cf5789b11f0ff3f863b704b336190bf968cd471";
sha256 = "0kmk5ck1j49q4ww0lvas2767kwnzhkq0vdwkmjypdx5zkxz73fn8";
};
buildInputs = [ python3 ];
installPhase = ''
install -vD subdl $out/bin/subdl
'';
2017-12-26 18:39:45 +00:00
meta = {
homepage = "https://github.com/alexanderwink/subdl";
2017-12-26 18:39:45 +00:00
description = "A command-line tool to download subtitles from opensubtitles.org";
2021-01-15 05:42:41 +00:00
platforms = lib.platforms.all;
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.exfalso ];
2017-12-26 18:39:45 +00:00
};
}