3
0
Fork 0
forked from mirrors/nixpkgs

winusb: init at 2017-01-30

fixes #25536
This commit is contained in:
gnidorah 2017-05-07 10:11:23 +03:00 committed by Jörg Thalheim
parent 529d0e74d7
commit 42cad8b6b0
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ stdenv, fetchFromGitHub, makeWrapper
, parted, grub2_light, p7zip
, wxGTK30, gksu }:
stdenv.mkDerivation rec {
name = "winusb-unstable-2017-01-30";
src = fetchFromGitHub {
owner = "slacka";
repo = "WinUSB";
rev = "599f00cdfd5c931056c576e4b2ae04d9285c4192";
sha256 = "1219425d1m4463jy85nrc5xz5qy5m8svidbiwnqicy7hp8pdwa7x";
};
buildInputs = [ wxGTK30 makeWrapper ];
postInstall = ''
# don't write data into /
substituteInPlace $out/bin/winusb \
--replace /media/ /tmp/winusb/
wrapProgram $out/bin/winusb \
--prefix PATH : ${stdenv.lib.makeBinPath [ parted grub2_light p7zip ]}
wrapProgram $out/bin/winusbgui \
--prefix PATH : ${stdenv.lib.makeBinPath [ gksu ]}
'';
meta = with stdenv.lib; {
description = "Create bootable USB disks from Windows ISO images";
homepage = https://github.com/slacka/WinUSB;
license = licenses.gpl3;
maintainers = with maintainers; [ bjornfor gnidorah ];
platforms = platforms.linux;
};
}

View file

@ -4657,6 +4657,8 @@ with pkgs;
which = callPackage ../tools/system/which { };
winusb = callPackage ../tools/misc/winusb { };
chase = callPackage ../tools/system/chase { };
wicd = callPackage ../tools/networking/wicd { };