about summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd/ccd2iso/default.nix
blob: b364566f4b7df66e39bf7673d7b074a39d9a7674 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "ccd2iso";
  version = "0.3";

  src = fetchurl {
    url = "mirror://sourceforge/ccd2iso/ccd2iso-${version}.tar.gz";
    sha256 = "1z000zi7hpr2h9cabj6hzf3n6a6gd6glmm8nn36v4b8i4vzbhx7q";
  };

  meta = with lib; {
    description = "CloneCD to ISO converter";
    homepage = "https://sourceforge.net/projects/ccd2iso/";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ yana ];
    platforms = platforms.unix;
    mainProgram = "ccd2iso";
  };
}