about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/cd-dvd/uif2iso/default.nix
blob: 4e3a2daafe81d40b53ca9f8a0b61b6a79a9ea30e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
  };
}