nixpkgs/pkgs/tools/archivers/wimlib/default.nix

49 lines
1.1 KiB
Nix
Raw Normal View History

2017-11-21 20:40:52 +00:00
{ stdenv, fetchurl, makeWrapper
, pkgconfig, openssl, fuse, libxml2
2017-11-21 13:35:07 +00:00
, cabextract ? null
, cdrkit ? null
, mtools ? null
, ntfs3g ? null
, syslinux ? null
}:
stdenv.mkDerivation rec {
version = "1.13.0";
2017-11-21 13:35:07 +00:00
name = "wimlib-${version}";
2017-11-21 20:40:52 +00:00
nativeBuildInputs = [ pkgconfig makeWrapper ];
buildInputs = [ openssl fuse libxml2 ntfs3g ];
2017-11-21 13:35:07 +00:00
src = fetchurl {
url = "https://wimlib.net/downloads/${name}.tar.gz";
sha256 = "02wpsxjlw9vysj6x6q7kmvbcdkpvdzw201mmj5x0q670mapjrnai";
2017-11-21 13:35:07 +00:00
};
preBuild = ''
2017-11-21 20:40:52 +00:00
substituteInPlace programs/mkwinpeimg.in \
--replace '/usr/lib/syslinux' "${syslinux}/share/syslinux"
2017-11-21 13:35:07 +00:00
'';
2017-11-21 20:40:52 +00:00
postInstall = let
path = stdenv.lib.makeBinPath [ cabextract cdrkit mtools ntfs3g syslinux ];
in ''
2017-11-21 13:35:07 +00:00
for prog in $out/bin/*; do
2017-11-21 20:40:52 +00:00
wrapProgram $prog --prefix PATH : ${path}
2017-11-21 13:35:07 +00:00
done
'';
doCheck = true;
2017-11-21 20:40:52 +00:00
preCheck = ''
patchShebangs tests
2017-11-21 13:35:07 +00:00
'';
2017-11-21 20:40:52 +00:00
meta = with stdenv.lib; {
2017-11-21 13:35:07 +00:00
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 ];
};
}