nixpkgs/pkgs/tools/cd-dvd/uif2iso/default.nix

26 lines
618 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, unzip, zlib }:
stdenv.mkDerivation rec {
2021-08-12 20:47:47 +01:00
pname = "uif2iso";
version = "0.1.7";
src = fetchurl {
2021-08-12 20:47:47 +01:00
url = "http://aluigi.altervista.org/mytoolz/uif2iso.zip";
sha256 = "1v18fmlzhkkhv8xdc9dyvl8vamwg3ka4dsrg7vvmk1f2iczdx3dp";
};
nativeBuildInputs = [ unzip ];
buildInputs = [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";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl1Plus;
platforms = lib.platforms.linux;
};
}