4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
68 lines
2.0 KiB
Nix
68 lines
2.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, qt4, util-linux, coreutils, which, qmake4Hook
|
|
, p7zip, mtools, syslinux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "unetbootin";
|
|
version = "681";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unetbootin";
|
|
repo = "unetbootin";
|
|
rev = version;
|
|
sha256 = "0ppqb7ywh4cpcjr5nw6f65dx4s8kx09gnhihnby3zjhxdf4l99fm";
|
|
};
|
|
|
|
setSourceRoot = ''
|
|
sourceRoot=$(echo */src/unetbootin)
|
|
'';
|
|
|
|
buildInputs = [ qt4 ];
|
|
nativeBuildInputs = [ makeWrapper qmake4Hook ];
|
|
enableParallelBuilding = true;
|
|
|
|
# Lots of nice hard-coded paths...
|
|
postPatch = ''
|
|
substituteInPlace unetbootin.cpp \
|
|
--replace /bin/df ${coreutils}/bin/df \
|
|
--replace /sbin/blkid ${util-linux}/sbin/blkid \
|
|
--replace /sbin/fdisk ${util-linux}/sbin/fdisk \
|
|
--replace /sbin/sfdisk ${util-linux}/sbin/sfdisk \
|
|
--replace /usr/bin/syslinux ${syslinux}/bin/syslinux \
|
|
--replace /usr/bin/extlinux ${syslinux}/sbin/extlinux \
|
|
--replace /usr/share/syslinux ${syslinux}/share/syslinux
|
|
|
|
substituteInPlace main.cpp \
|
|
--replace /usr/share/unetbootin $out/share/unetbootin
|
|
|
|
substituteInPlace unetbootin.desktop \
|
|
--replace /usr/bin $out/bin
|
|
'';
|
|
|
|
preConfigure = ''
|
|
lupdate unetbootin.pro
|
|
lrelease unetbootin.pro
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 -t $out/bin unetbootin
|
|
install -Dm644 -t $out/share/unetbootin unetbootin_*.qm
|
|
install -Dm644 -t $out/share/applications unetbootin.desktop
|
|
|
|
wrapProgram $out/bin/unetbootin \
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ mtools p7zip which ]} \
|
|
--set QT_X11_NO_MITSHM 1
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://unetbootin.sourceforge.net/";
|
|
description = "A tool to create bootable live USB drives from ISO images";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ebzzry ];
|
|
};
|
|
}
|