about summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-27 10:03:31 +0300
committerGitHub <noreply@github.com>2023-06-27 10:03:31 +0300
commit2572884adf45e104d2bbcbeba6018c4fe01ece48 (patch)
tree27d136e6d3349d27129a69b5fb88479791ec86b7 /pkgs/tools/cd-dvd
parente426af54ff8e59a89ca34436eb245b0fd32348b4 (diff)
parent66356e1f7ef5338d5fc37b9710245c13288c347c (diff)
downloadnixlib-2572884adf45e104d2bbcbeba6018c4fe01ece48.tar
nixlib-2572884adf45e104d2bbcbeba6018c4fe01ece48.tar.gz
nixlib-2572884adf45e104d2bbcbeba6018c4fe01ece48.tar.bz2
nixlib-2572884adf45e104d2bbcbeba6018c4fe01ece48.tar.lz
nixlib-2572884adf45e104d2bbcbeba6018c4fe01ece48.tar.xz
nixlib-2572884adf45e104d2bbcbeba6018c4fe01ece48.tar.zst
nixlib-2572884adf45e104d2bbcbeba6018c4fe01ece48.zip
Merge pull request #240027 from peterhoeg/u/ventoy
ventoy: 1.0.91 -> 1.0.93
Diffstat (limited to 'pkgs/tools/cd-dvd')
-rw-r--r--pkgs/tools/cd-dvd/ventoy/default.nix27
1 files changed, 15 insertions, 12 deletions
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 ];
   };
 })