Merge pull request #298167 from MatthewCroughan/mc/cgterm

cgterm: init at 1.7b2

authored by Pol Dellaiera and committed by GitHub 852b4032 10f22832

+32
+32
pkgs/by-name/cg/cgterm/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , SDL 5 + }: 6 + 7 + stdenv.mkDerivation (finalAttrs: { 8 + pname = "cg-term"; 9 + version = "1.7b2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "MagerValp"; 13 + repo = "CGTerm"; 14 + rev = "01e35d64c29bccee52211b0afc66035a10e4792a"; # no tags 15 + hash = "sha256-Gk7t9wnVCRWwnqcItS3j031VqJnBqk6rHw1SABtzqfE="; 16 + }; 17 + 18 + buildInputs = [ 19 + SDL 20 + ]; 21 + 22 + makeFlags = [ "CC:=$(CC)" "PREFIX=$(out)" ]; 23 + 24 + meta = with lib; { 25 + description = "C/G telnet client for C64 BBS's"; 26 + homepage = "https://github.com/MagerValp/CGTerm"; 27 + license = licenses.bsd2; 28 + maintainers = with maintainers; [ matthewcroughan ]; 29 + mainProgram = "cg-term"; 30 + platforms = platforms.all; 31 + }; 32 + })