From 66356e1f7ef5338d5fc37b9710245c13288c347c Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Tue, 27 Jun 2023 09:24:02 +0800 Subject: ventoy: 1.0.91 -> 1.0.93 --- pkgs/tools/cd-dvd/ventoy/default.nix | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'pkgs') diff --git a/pkgs/tools/cd-dvd/ventoy/default.nix b/pkgs/tools/cd-dvd/ventoy/default.nix index 3c931248305c..2edf7a5fdb71 100644 --- a/pkgs/tools/cd-dvd/ventoy/default.nix +++ b/pkgs/tools/cd-dvd/ventoy/default.nix @@ -51,14 +51,16 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "ventoy"; - version = "1.0.91"; + version = "1.0.93"; - src = let - inherit (finalAttrs) version; - in fetchurl { - url = "https://github.com/ventoy/Ventoy/releases/download/v${version}/ventoy-${version}-linux.tar.gz"; - hash = "sha256-9vsFdOxsW1Cs06gVPvQusju2+wp4PpBwbHZUugwb3co="; - }; + src = + let + inherit (finalAttrs) version; + in + fetchurl { + url = "https://github.com/ventoy/Ventoy/releases/download/v${version}/ventoy-${version}-linux.tar.gz"; + hash = "sha256-oz5IVq0QsPX90N4EBold2QQ8/CY4XF+KcQ41L+TR4iI="; + }; patches = [ ./000-nixos-sanitization.patch @@ -112,7 +114,8 @@ stdenv.mkDerivation (finalAttrs: { terminal = false; categories = [ "Utility" ]; startupNotify = true; - })]; + }) + ]; dontConfigure = true; dontBuild = true; @@ -183,7 +186,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = { + meta = with lib; { homepage = "https://www.ventoy.net"; description = "A New Bootable USB Solution"; longDescription = '' @@ -200,9 +203,9 @@ stdenv.mkDerivation (finalAttrs: { 800+ image files are tested. 90%+ distros in DistroWatch supported. ''; changelog = "https://www.ventoy.net/doc_news.html"; - license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ AndersonTorres ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ AndersonTorres ]; platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "mipsel-linux" ]; - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; }; }) -- cgit 1.4.1