forked from mirrors/nixpkgs
commit
cef1abbd88
48
pkgs/tools/archivers/wimlib/default.nix
Normal file
48
pkgs/tools/archivers/wimlib/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ stdenv, fetchurl, makeWrapper
|
||||||
|
, pkgconfig, openssl, fuse, libxml2
|
||||||
|
, cabextract ? null
|
||||||
|
, cdrkit ? null
|
||||||
|
, mtools ? null
|
||||||
|
, ntfs3g ? null
|
||||||
|
, syslinux ? null
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "1.12.0";
|
||||||
|
name = "wimlib-${version}";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig makeWrapper ];
|
||||||
|
buildInputs = [ openssl fuse libxml2 ntfs3g ];
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://wimlib.net/downloads/${name}.tar.gz";
|
||||||
|
sha256 = "852cf59d682a91974f715f09fa98cab621b740226adcfea7a42360be0f86464f";
|
||||||
|
};
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
substituteInPlace programs/mkwinpeimg.in \
|
||||||
|
--replace '/usr/lib/syslinux' "${syslinux}/share/syslinux"
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = let
|
||||||
|
path = stdenv.lib.makeBinPath [ cabextract cdrkit mtools ntfs3g syslinux ];
|
||||||
|
in ''
|
||||||
|
for prog in $out/bin/*; do
|
||||||
|
wrapProgram $prog --prefix PATH : ${path}
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
patchShebangs tests
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://wimlib.net;
|
||||||
|
description = "A library and program to extract, create, and modify WIM files";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ andir ];
|
||||||
|
license = with licenses; [ gpl3 lgpl3 cc0 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5146,6 +5146,8 @@ with pkgs;
|
||||||
|
|
||||||
wicd = callPackage ../tools/networking/wicd { };
|
wicd = callPackage ../tools/networking/wicd { };
|
||||||
|
|
||||||
|
wimlib = callPackage ../tools/archivers/wimlib { };
|
||||||
|
|
||||||
wipe = callPackage ../tools/security/wipe { };
|
wipe = callPackage ../tools/security/wipe { };
|
||||||
|
|
||||||
wkhtmltopdf = callPackage ../tools/graphics/wkhtmltopdf {
|
wkhtmltopdf = callPackage ../tools/graphics/wkhtmltopdf {
|
||||||
|
|
Loading…
Reference in a new issue