nixpkgs/pkgs/tools/cd-dvd/ccd2iso/default.nix

19 lines
482 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-12-15 03:45:19 +00:00
stdenv.mkDerivation rec {
name = "ccd2iso-0.3";
src = fetchurl {
url = "mirror://sourceforge/ccd2iso/${name}.tar.gz";
sha256 = "1z000zi7hpr2h9cabj6hzf3n6a6gd6glmm8nn36v4b8i4vzbhx7q";
};
meta = with lib; {
2017-12-15 03:45:19 +00:00
description = "CloneCD to ISO converter";
homepage = "https://sourceforge.net/projects/ccd2iso/";
2017-12-15 03:45:19 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.unix;
};
}