Skip to content

Commit

Permalink
caprice32 : init at unstable-2018-02-10 (#35008)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bignaux Ronan authored and joachifm committed Mar 4, 2018
1 parent 9c0e9f6 commit 7bffe53
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/misc/emulators/caprice32/default.nix
@@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, libpng, pkgconfig, SDL, freetype, zlib, mesa }:

stdenv.mkDerivation rec {

repo = "caprice32";
version = "unstable-2018-02-10";
rev = "53de69543300f81af85df32cbd21bb5c68cab61e";
name = "${repo}-${version}";

src = fetchFromGitHub {
inherit rev repo;
owner = "ColinPitrat";
sha256 = "12yv56blm49qmshpk4mgc802bs51wv2ra87hmcbf2wxma39c45fy";
};

postPatch = "substituteInPlace cap32.cfg --replace /usr/local $out";

meta = with stdenv.lib; {
description = "A complete emulation of CPC464, CPC664 and CPC6128";
homepage = https://github.com/ColinPitrat/caprice32 ;
license = licenses.gpl2;
maintainers = [ maintainers.genesis ];
platforms = platforms.linux;
};

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libpng SDL freetype zlib ];
makeFlags = [ "GIT_HASH=${src.rev}" "DESTDIR=$(out)" "prefix=/"];
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -19609,6 +19609,8 @@ with pkgs;

cryptoverif = callPackage ../applications/science/logic/cryptoverif { };

caprice32 = callPackage ../misc/emulators/caprice32 { };

cubicle = callPackage ../applications/science/logic/cubicle { };

cvc3 = callPackage ../applications/science/logic/cvc3 {
Expand Down

0 comments on commit 7bffe53

Please sign in to comment.