dadc7eb329
Whenever we create scripts that are installed to $out, we must use runtimeShell in order to get the shell that can be executed on the machine we create the package for. This is relevant for cross-compiling. The only use case for stdenv.shell are scripts that are executed as part of the build system. Usages in checkPhase are borderline however to decrease the likelyhood of people copying the wrong examples, I decided to use runtimeShell as well.
60 lines
1.5 KiB
Nix
60 lines
1.5 KiB
Nix
{ stdenv, python36Packages, fetchFromGitHub, libxcb, mtools, p7zip, parted, procps, utillinux, qt5, runtimeShell }:
|
|
python36Packages.buildPythonApplication rec {
|
|
pname = "multibootusb";
|
|
name = "${pname}-${version}";
|
|
version = "9.2.0";
|
|
|
|
buildInputs = [
|
|
python36Packages.dbus-python
|
|
python36Packages.pyqt5
|
|
python36Packages.pytest-shutil
|
|
python36Packages.python
|
|
python36Packages.pyudev
|
|
python36Packages.six
|
|
libxcb
|
|
mtools
|
|
p7zip
|
|
parted
|
|
procps
|
|
qt5.full
|
|
utillinux
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mbusb";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0wlan0cp6c2i0nahixgpmkm0h4n518gj8rc515d579pqqp91p2h3";
|
|
};
|
|
|
|
# Skip the fixup stage where stuff is shrinked (can't shrink text files)
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase = ''
|
|
share="$out/share/${pname}"
|
|
mkdir -p "$share"
|
|
cp -r data "$share/data"
|
|
cp -r scripts "$share/scripts"
|
|
cp "${pname}" "$share/${pname}"
|
|
|
|
mkdir "$out/bin"
|
|
cat > "$out/bin/${pname}" <<EOF
|
|
#!${runtimeShell}
|
|
cd "$share"
|
|
export PYTHONPATH="$PYTHONPATH:$share"
|
|
export PATH="$PATH:${parted}/bin:${procps}/bin"
|
|
|
|
"${python36Packages.python}/bin/python" "${pname}"
|
|
EOF
|
|
chmod +x "$out/bin/${pname}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Multiboot USB creator for Linux live disks";
|
|
homepage = http://multibootusb.org/;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ jD91mZM2 ];
|
|
};
|
|
}
|