Skip to content

Commit fd5197d

Browse files
authored
losslesscut-bin: 3.61.1 -> 3.64.0 (NixOS#373227)
2 parents 66be312 + ffa605a commit fd5197d

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

pkgs/by-name/lo/losslesscut-bin/build-from-appimage.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
}:
1010

1111
let
12-
pname = "losslesscut";
13-
1412
src = fetchurl {
1513
url = "https://github.com/mifi/lossless-cut/releases/download/v${version}/LosslessCut-linux-x86_64.AppImage";
1614
inherit hash;

pkgs/by-name/lo/losslesscut-bin/build-from-dmg.nix

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,15 @@
1010
metaCommon ? { },
1111
}:
1212

13-
let
14-
pname = "losslesscut";
13+
stdenvNoCC.mkDerivation {
14+
inherit pname version;
15+
1516
src = fetchurl {
1617
url = "https://github.com/mifi/lossless-cut/releases/download/v${version}/LosslessCut-mac-${
1718
if isAarch64 then "arm64" else "x64"
1819
}.dmg";
1920
inherit hash;
2021
};
21-
in
22-
stdenvNoCC.mkDerivation {
23-
inherit pname version src;
2422

2523
nativeBuildInputs = [ _7zz ];
2624

pkgs/by-name/lo/losslesscut-bin/package.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
let
99
pname = "losslesscut";
10-
version = "3.61.1";
10+
version = "3.64.0";
1111
metaCommon = with lib; {
1212
description = "Swiss army knife of lossless video/audio editing";
1313
homepage = "https://mifi.no/losslesscut/";
@@ -18,22 +18,22 @@ let
1818
};
1919
x86_64-appimage = callPackage ./build-from-appimage.nix {
2020
inherit pname version metaCommon;
21-
hash = "sha256-wKhEB+MfOsBvZRTIt3hLofw37+YO+hWKowlSi1OxSAU=";
21+
hash = "sha256-K90cJuJFcIkPuAQusJcOBkZ5PQ8T25q7IFIhtmK+jzc=";
2222
inherit (buildPackages) makeWrapper;
2323
};
2424
x86_64-dmg = callPackage ./build-from-dmg.nix {
2525
inherit pname version metaCommon;
26-
hash = "sha256-yZYmM533D9VzM+a0bnYz/aqocaEJVFOTgLWjbQGOQR0=";
26+
hash = "sha256-BO2KoYAevbVL0Eix1knvaPVBkWucYI89VkueWYRTcXY=";
2727
isAarch64 = false;
2828
};
2929
aarch64-dmg = callPackage ./build-from-dmg.nix {
3030
inherit pname version metaCommon;
31-
hash = "sha256-/qa2P0R7xRzDgnPKqkeKN6lrDbPg9WuZ/Nnc51NTzaM=";
31+
hash = "sha256-/M5yafZQDqCoDzHpjZBC80CcL9KMO5lwvyCcq19caRg=";
3232
isAarch64 = true;
3333
};
3434
x86_64-windows = callPackage ./build-from-windows.nix {
3535
inherit pname version metaCommon;
36-
hash = "sha256-0awYmSGxm8M12X0WQftlapRF9m3GGCZivNwBtRjSa4E=";
36+
hash = "sha256-FYrnTiZ5ATT+Y08zceIIHbVM//5Bg2ozIEyC5UxmIno=";
3737
};
3838
in
3939
(

0 commit comments

Comments
 (0)