nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 28 lines 555 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "ccd2iso"; 9 version = "0.3"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/ccd2iso/ccd2iso-${version}.tar.gz"; 13 sha256 = "1z000zi7hpr2h9cabj6hzf3n6a6gd6glmm8nn36v4b8i4vzbhx7q"; 14 }; 15 16 patches = [ 17 ./include.patch 18 ]; 19 20 meta = with lib; { 21 description = "CloneCD to ISO converter"; 22 homepage = "https://sourceforge.net/projects/ccd2iso/"; 23 license = licenses.gpl2Plus; 24 maintainers = [ ]; 25 platforms = platforms.unix; 26 mainProgram = "ccd2iso"; 27 }; 28}