2021-05-17 19:13:58 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, installShellFiles, makeWrapper
|
|
|
|
, coreutils, dosfstools, findutils, gawk, gnugrep, grub2_light, ncurses, ntfs3g, parted, p7zip, util-linux, wimlib, wget }:
|
2017-12-22 05:20:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-12-06 02:01:32 +00:00
|
|
|
version = "5.2.4";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "woeusb";
|
2017-12-22 05:20:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-05-17 19:13:58 +00:00
|
|
|
owner = "WoeUSB";
|
2017-12-22 05:20:11 +00:00
|
|
|
repo = "WoeUSB";
|
|
|
|
rev = "v${version}";
|
2021-12-06 02:01:32 +00:00
|
|
|
sha256 = "sha256-HB1E7rP/U58dyL3j6YnhF5AOGAcHqmA/ZZ5JNBDibco=";
|
2017-12-22 05:20:11 +00:00
|
|
|
};
|
|
|
|
|
2021-05-17 19:13:58 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
2017-12-22 05:20:11 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# Emulate version smudge filter (see .gitattributes, .gitconfig).
|
2021-05-17 19:13:58 +00:00
|
|
|
for file in sbin/woeusb share/man/man1/woeusb.1; do
|
2017-12-22 05:20:11 +00:00
|
|
|
substituteInPlace "$file" \
|
|
|
|
--replace '@@WOEUSB_VERSION@@' '${version}'
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-05-17 19:13:58 +00:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mv sbin/woeusb $out/bin
|
|
|
|
installManPage share/man/man1/woeusb.1
|
2017-12-22 05:20:11 +00:00
|
|
|
|
|
|
|
wrapProgram "$out/bin/woeusb" \
|
2021-05-17 19:13:58 +00:00
|
|
|
--set PATH '${lib.makeBinPath [ coreutils dosfstools findutils gawk gnugrep grub2_light ncurses ntfs3g parted p7zip util-linux wget wimlib ]}'
|
|
|
|
|
|
|
|
runHook postInstall
|
2017-12-22 05:20:11 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
|
|
|
|
postInstallCheck = ''
|
|
|
|
# woeusb --version checks for missing runtime dependencies.
|
|
|
|
out_version="$("$out/bin/woeusb" --version)"
|
|
|
|
[ "$out_version" = '${version}' ]
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-22 05:20:11 +00:00
|
|
|
description = "Create bootable USB disks from Windows ISO images";
|
2021-05-17 19:13:58 +00:00
|
|
|
homepage = "https://github.com/WoeUSB/WoeUSB";
|
|
|
|
license = licenses.gpl3Plus;
|
2021-04-29 05:21:13 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
2017-12-22 05:20:11 +00:00
|
|
|
platforms = platforms.linux;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "woeusb";
|
2017-12-22 05:20:11 +00:00
|
|
|
};
|
|
|
|
}
|