ventoy-bin: rename to ventoy
This commit is contained in:
parent
e1b6c395e6
commit
630e1fbb51
3 changed files with 7 additions and 8 deletions
|
@ -50,7 +50,7 @@ let
|
||||||
or (throw "Unsupported platform ${stdenv.hostPlatform.system}");
|
or (throw "Unsupported platform ${stdenv.hostPlatform.system}");
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "ventoy-bin";
|
pname = "ventoy";
|
||||||
version = "1.0.90";
|
version = "1.0.90";
|
||||||
|
|
||||||
src = let
|
src = let
|
||||||
|
@ -183,7 +183,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
homepage = "https://www.ventoy.net";
|
homepage = "https://www.ventoy.net";
|
||||||
description = "A New Bootable USB Solution";
|
description = "A New Bootable USB Solution";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -200,10 +200,9 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
800+ image files are tested. 90%+ distros in DistroWatch supported.
|
800+ image files are tested. 90%+ distros in DistroWatch supported.
|
||||||
'';
|
'';
|
||||||
changelog = "https://www.ventoy.net/doc_news.html";
|
changelog = "https://www.ventoy.net/doc_news.html";
|
||||||
license = licenses.gpl3Plus;
|
license = lib.licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
||||||
platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "mipsel-linux" ];
|
platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "mipsel-linux" ];
|
||||||
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||||
mainProgram = "ventoy";
|
|
||||||
};
|
};
|
||||||
})
|
})
|
|
@ -1670,8 +1670,8 @@ with pkgs;
|
||||||
|
|
||||||
veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { };
|
veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { };
|
||||||
|
|
||||||
ventoy-bin = callPackage ../tools/cd-dvd/ventoy-bin { };
|
ventoy = callPackage ../tools/cd-dvd/ventoy { };
|
||||||
ventoy-bin-full = ventoy-bin.override {
|
ventoy-full = ventoy.override {
|
||||||
withCryptsetup = true;
|
withCryptsetup = true;
|
||||||
withXfs = true;
|
withXfs = true;
|
||||||
withExt4 = true;
|
withExt4 = true;
|
||||||
|
|
Loading…
Reference in a new issue