a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
18 lines
482 B
Nix
18 lines
482 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ccd2iso-0.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/ccd2iso/${name}.tar.gz";
|
|
sha256 = "1z000zi7hpr2h9cabj6hzf3n6a6gd6glmm8nn36v4b8i4vzbhx7q";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "CloneCD to ISO converter";
|
|
homepage = "https://sourceforge.net/projects/ccd2iso/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|