mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
24 lines
548 B
Nix
24 lines
548 B
Nix
{ 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 = [ ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "ccd2iso";
|
|
};
|
|
}
|