blob: abe0c3d81e159aca93793a60bda3d5326500648d (
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
|
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "ccd2iso";
version = "0.3";
src = fetchurl {
url = "mirror://sourceforge/ccd2iso/ccd2iso-${version}.tar.gz";
sha256 = "1z000zi7hpr2h9cabj6hzf3n6a6gd6glmm8nn36v4b8i4vzbhx7q";
};
patches = [
./include.patch
];
meta = with lib; {
description = "CloneCD to ISO converter";
homepage = "https://sourceforge.net/projects/ccd2iso/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];
platforms = platforms.unix;
mainProgram = "ccd2iso";
};
}
|