losslesscut-bin: 3.61.1 -> 3.64.0 (#373227)
This commit is contained in:
commit
fd5197d905
@ -9,8 +9,6 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "losslesscut";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mifi/lossless-cut/releases/download/v${version}/LosslessCut-linux-x86_64.AppImage";
|
url = "https://github.com/mifi/lossless-cut/releases/download/v${version}/LosslessCut-linux-x86_64.AppImage";
|
||||||
inherit hash;
|
inherit hash;
|
||||||
|
|||||||
@ -10,17 +10,15 @@
|
|||||||
metaCommon ? { },
|
metaCommon ? { },
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
stdenvNoCC.mkDerivation {
|
||||||
pname = "losslesscut";
|
inherit pname version;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mifi/lossless-cut/releases/download/v${version}/LosslessCut-mac-${
|
url = "https://github.com/mifi/lossless-cut/releases/download/v${version}/LosslessCut-mac-${
|
||||||
if isAarch64 then "arm64" else "x64"
|
if isAarch64 then "arm64" else "x64"
|
||||||
}.dmg";
|
}.dmg";
|
||||||
inherit hash;
|
inherit hash;
|
||||||
};
|
};
|
||||||
in
|
|
||||||
stdenvNoCC.mkDerivation {
|
|
||||||
inherit pname version src;
|
|
||||||
|
|
||||||
nativeBuildInputs = [ _7zz ];
|
nativeBuildInputs = [ _7zz ];
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
pname = "losslesscut";
|
pname = "losslesscut";
|
||||||
version = "3.61.1";
|
version = "3.64.0";
|
||||||
metaCommon = with lib; {
|
metaCommon = with lib; {
|
||||||
description = "Swiss army knife of lossless video/audio editing";
|
description = "Swiss army knife of lossless video/audio editing";
|
||||||
homepage = "https://mifi.no/losslesscut/";
|
homepage = "https://mifi.no/losslesscut/";
|
||||||
@ -18,22 +18,22 @@ let
|
|||||||
};
|
};
|
||||||
x86_64-appimage = callPackage ./build-from-appimage.nix {
|
x86_64-appimage = callPackage ./build-from-appimage.nix {
|
||||||
inherit pname version metaCommon;
|
inherit pname version metaCommon;
|
||||||
hash = "sha256-wKhEB+MfOsBvZRTIt3hLofw37+YO+hWKowlSi1OxSAU=";
|
hash = "sha256-K90cJuJFcIkPuAQusJcOBkZ5PQ8T25q7IFIhtmK+jzc=";
|
||||||
inherit (buildPackages) makeWrapper;
|
inherit (buildPackages) makeWrapper;
|
||||||
};
|
};
|
||||||
x86_64-dmg = callPackage ./build-from-dmg.nix {
|
x86_64-dmg = callPackage ./build-from-dmg.nix {
|
||||||
inherit pname version metaCommon;
|
inherit pname version metaCommon;
|
||||||
hash = "sha256-yZYmM533D9VzM+a0bnYz/aqocaEJVFOTgLWjbQGOQR0=";
|
hash = "sha256-BO2KoYAevbVL0Eix1knvaPVBkWucYI89VkueWYRTcXY=";
|
||||||
isAarch64 = false;
|
isAarch64 = false;
|
||||||
};
|
};
|
||||||
aarch64-dmg = callPackage ./build-from-dmg.nix {
|
aarch64-dmg = callPackage ./build-from-dmg.nix {
|
||||||
inherit pname version metaCommon;
|
inherit pname version metaCommon;
|
||||||
hash = "sha256-/qa2P0R7xRzDgnPKqkeKN6lrDbPg9WuZ/Nnc51NTzaM=";
|
hash = "sha256-/M5yafZQDqCoDzHpjZBC80CcL9KMO5lwvyCcq19caRg=";
|
||||||
isAarch64 = true;
|
isAarch64 = true;
|
||||||
};
|
};
|
||||||
x86_64-windows = callPackage ./build-from-windows.nix {
|
x86_64-windows = callPackage ./build-from-windows.nix {
|
||||||
inherit pname version metaCommon;
|
inherit pname version metaCommon;
|
||||||
hash = "sha256-0awYmSGxm8M12X0WQftlapRF9m3GGCZivNwBtRjSa4E=";
|
hash = "sha256-FYrnTiZ5ATT+Y08zceIIHbVM//5Bg2ozIEyC5UxmIno=";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
(
|
(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user