Merge pull request #16164 from talw/master

uif2iso: init at 0.1.7
This commit is contained in:
zimbatm 2016-06-12 11:39:25 +01:00 committed by GitHub
commit 8a4f27bc32
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, unzip, zlib }:
stdenv.mkDerivation rec {
nameNoVer = "uif2iso";
name = "${nameNoVer}-0.1.7";
src = fetchurl {
url = "http://aluigi.altervista.org/mytoolz/${nameNoVer}.zip";
sha256 = "1v18fmlzhkkhv8xdc9dyvl8vamwg3ka4dsrg7vvmk1f2iczdx3dp";
};
buildInputs = [unzip zlib];
installPhase = ''
make -C . prefix="$out" install;
'';
meta = {
description = "Tool for converting single/multi part UIF image files to ISO";
homepage = "http://aluigi.org/mytoolz.htm#uif2iso";
license = stdenv.lib.licenses.gpl1Plus;
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -3608,6 +3608,8 @@ in
uget = callPackage ../tools/networking/uget { };
uif2iso = callPackage ../tools/cd-dvd/uif2iso { };
umlet = callPackage ../tools/misc/umlet { };
unetbootin = callPackage ../tools/cd-dvd/unetbootin { };