43b61d8474
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/woeusb/versions
58 lines
1.8 KiB
Nix
58 lines
1.8 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, makeWrapper
|
|
, coreutils, dosfstools, findutils, gawk, gnugrep, grub2_light, ncurses, ntfs3g, parted, utillinux, wget
|
|
, wxGTK30 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.2.10";
|
|
name = "woeusb-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "slacka";
|
|
repo = "WoeUSB";
|
|
rev = "v${version}";
|
|
sha256 = "0jzgwh9xv92yns5yi5zpl49zbp3csh6m6iclgq070awpjpsqlqi0";
|
|
};
|
|
|
|
buildInputs = [ wxGTK30 autoreconfHook makeWrapper ];
|
|
|
|
postPatch = ''
|
|
# Emulate version smudge filter (see .gitattributes, .gitconfig).
|
|
for file in configure.ac debian/changelog src/woeusb src/woeusb.1 src/woeusbgui.1; do
|
|
substituteInPlace "$file" \
|
|
--replace '@@WOEUSB_VERSION@@' '${version}'
|
|
done
|
|
|
|
substituteInPlace src/MainPanel.cpp \
|
|
--replace "'woeusb " "'$out/bin/woeusb "
|
|
'';
|
|
|
|
postInstall = ''
|
|
# don't write data into /
|
|
substituteInPlace "$out/bin/woeusb" \
|
|
--replace /media/ /run/woeusb/
|
|
|
|
# woeusbgui launches woeusb with pkexec, which sets
|
|
# PATH=/usr/sbin:/usr/bin:/sbin:/bin:/root/bin. Perhaps pkexec
|
|
# should be patched with a less useless default PATH, but for now
|
|
# we add everything we need manually.
|
|
wrapProgram "$out/bin/woeusb" \
|
|
--set PATH '${stdenv.lib.makeBinPath [ coreutils dosfstools findutils gawk gnugrep grub2_light ncurses ntfs3g parted utillinux wget ]}'
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
postInstallCheck = ''
|
|
# woeusb --version checks for missing runtime dependencies.
|
|
out_version="$("$out/bin/woeusb" --version)"
|
|
[ "$out_version" = '${version}' ]
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Create bootable USB disks from Windows ISO images";
|
|
homepage = https://github.com/slacka/WoeUSB;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ bjornfor gnidorah ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|