diff options
Diffstat (limited to 'pkgs/applications/video/sub-batch/default.nix')
-rw-r--r-- | pkgs/applications/video/sub-batch/default.nix | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/applications/video/sub-batch/default.nix b/pkgs/applications/video/sub-batch/default.nix deleted file mode 100644 index 713a0ad2753e..000000000000 --- a/pkgs/applications/video/sub-batch/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ stdenv -, lib -, fetchFromGitHub -, rustPlatform -, makeWrapper -, alass -}: - -rustPlatform.buildRustPackage rec { - pname = "sub-batch"; - version = "1.0.1"; - - src = fetchFromGitHub { - owner = "kl"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-TOcK+l65iKON1kgBE4DYV/BXACnvqPCshavnVdpnGH4="; - }; - - cargoHash = "sha256-tOY3aLpU08Tg/IT+usS2DNO0Q1aD0bvURmNJmHcJkgI="; - - nativeBuildInputs = [ makeWrapper ]; - - postInstall = '' - wrapProgram "$out/bin/sub-batch" --prefix PATH : "${lib.makeBinPath [ alass ]}" - ''; - - meta = with lib; { - description = "Match and rename subtitle files to video files and perform other batch operations on subtitle files"; - homepage = "https://github.com/kl/sub-batch"; - license = licenses.mit; - maintainers = with maintainers; [ erictapen ]; - broken = stdenv.isDarwin; - mainProgram = "sub-batch"; - }; -} |