python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / cd-dvd / cdi2iso / default.nix
blob26768747a46cbd9107cc905fec801b3aef223d65
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "cdi2iso";
5   version = "0.1";
7   src = fetchurl {
8     url = "mirror://sourceforge/cdi2iso.berlios/${pname}-${version}-src.tar.gz";
9     sha256 = "0fj2fxhpr26z649m0ph71378c41ljflpyk89g87x8r1mc4rbq3kh";
10   };
12   postPatch = ''
13     substituteInPlace Makefile --replace "gcc" "${stdenv.cc.targetPrefix}cc"
14   '';
16   installPhase = ''
17     mkdir -p $out/bin
18     cp cdi2iso $out/bin
19   '';
21   meta = with lib; {
22     description = "A very simple utility for converting DiscJuggler images to the standard ISO-9660 format";
23     homepage = "https://sourceforge.net/projects/cdi2iso.berlios";
24     license = licenses.gpl2;
25     maintainers = with maintainers; [ hrdinka ];
26     platforms = platforms.all;
27   };