aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/video/alass/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/video/alass/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/video/alass/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/video/alass/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/video/alass/default.nix
new file mode 100644
index 000000000000..c57a224ee0aa
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/video/alass/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, fetchFromGitHub
+, rustPlatform
+, makeWrapper
+, ffmpeg
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "alass";
+ version = "2.0.0";
+
+ src = fetchFromGitHub {
+ owner = "kaegi";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-q1IV9TtmznpR7RO75iN0p16nmTja5ADWqFj58EOPWvU=";
+ };
+
+ cargoSha256 = "sha256-6CVa/ypz37bm/3R0Gi65ovu4SIwWcgVde3Z2W1R16mk=";
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ postInstall = ''
+ wrapProgram "$out/bin/alass-cli" --prefix PATH : "${lib.makeBinPath [ ffmpeg ]}"
+ '';
+
+ meta = with lib; {
+ description = "Automatic Language-Agnostic Subtitle Synchronization";
+ homepage = "https://github.com/kaegi/alass";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ erictapen ];
+ };
+}