3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #235198 from felschr/filebot

filebot: 5.0.2 -> 5.0.3
This commit is contained in:
Pol Dellaiera 2023-06-09 08:15:49 +02:00 committed by GitHub
commit 0334d1c935
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,13 +8,13 @@ let
url = "https://search.maven.org/remotecontent?filepath=com/googlecode/lanterna/lanterna/3.1.1/lanterna-3.1.1.jar";
hash = "sha256-7zxCeXYW5v9ritnvkwRpPKdgSptCmkT3HJOaNgQHUmQ=";
};
in stdenv.mkDerivation rec {
in stdenv.mkDerivation (finalAttrs: {
pname = "filebot";
version = "5.0.2";
version = "5.0.3";
src = fetchurl {
url = "https://web.archive.org/web/20230418205553/https://get.filebot.net/filebot/FileBot_${version}/FileBot_${version}-portable.tar.xz";
hash = "sha256-XnzBXZy/gNA8qf7XairoviRmdQiXHbW19BgbHL52SP0=";
url = "https://web.archive.org/web/20230418205553/https://get.filebot.net/filebot/FileBot_${finalAttrs.version}/FileBot_${finalAttrs.version}-portable.tar.xz";
hash = "sha256-8FTmR+ztR2ugPcgHvfwyh9yfxPiUJdeAVvjjl5cQCy0=";
};
unpackPhase = "tar xvf $src";
@ -68,4 +68,4 @@ in stdenv.mkDerivation rec {
maintainers = with maintainers; [ gleber felschr ];
platforms = platforms.linux;
};
}
})