nixpkgs/pkgs/tools/cd-dvd/bootiso/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.5 KiB
Nix
Raw Normal View History

2021-06-04 20:47:56 +03:00
{ lib
, stdenvNoCC
, fetchFromGitHub
2022-11-20 12:44:16 +03:00
, fetchpatch
2021-06-04 20:47:56 +03:00
, bash
, makeWrapper
, bc
, jq
2021-06-13 19:52:56 +03:00
, coreutils
, util-linux
2021-06-04 20:47:56 +03:00
, wimlib
, file
, syslinux
, busybox
, gnugrep # We can't use busybox's 'grep' as it doesn't support perl '-P' expressions.
}:
stdenvNoCC.mkDerivation rec {
pname = "bootiso";
version = "4.2.0";
src = fetchFromGitHub {
owner = "jsamr";
repo = pname;
rev = "v${version}";
sha256 = "1l09d543b73r0wbpsj5m6kski8nq48lbraq1myxhidkgl3mm3d5i";
};
2022-11-20 12:44:16 +03:00
patches = [
(fetchpatch {
url = "https://code.opensuse.org/package/bootiso/raw/3799710e3da40c1b429ea1a2ce3896d18d08a5c5/f/syslinux-lib-root.patch";
sha256 = "sha256-x2EJppQsPPymSrjRwEy7mylW+2OKcGzKsKF3y7fzrB8=";
})
];
2021-06-04 20:47:56 +03:00
strictDeps = true;
buildInputs = [ bash ];
nativeBuildInputs = [ makeWrapper ];
makeFlags = [ "prefix=${placeholder "out"}" ];
2022-11-20 12:44:16 +03:00
postPatch = ''
substituteInPlace bootiso \
--replace "\$(basename \"\$0\")" "bootiso" \
--replace "/usr/share/syslinux" "${syslinux}/share/syslinux"
'';
2021-06-04 20:47:56 +03:00
postInstall = ''
wrapProgram $out/bin/bootiso \
2021-06-13 19:52:56 +03:00
--prefix PATH : ${lib.makeBinPath [ bc jq coreutils util-linux wimlib file syslinux gnugrep busybox ]} \
2021-06-04 20:47:56 +03:00
'';
meta = with lib; {
description = "Script for securely creating a bootable USB device from one image file";
homepage = "https://github.com/jsamr/bootiso";
license = licenses.gpl3;
2022-01-27 10:48:49 +03:00
maintainers = with maintainers; [ muscaln ];
2021-06-04 20:47:56 +03:00
platforms = platforms.all;
2023-11-23 05:51:17 +03:00
mainProgram = "bootiso";
2021-06-04 20:47:56 +03:00
};
}