My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/pacman.nix

29 lines
620 B

{ build-idris-package
, fetchFromGitHub
, contrib
, sdl2
, lib
}:
build-idris-package {
pname = "pacman";
version = "2017-11-10";
idrisDeps = [ contrib sdl2 ];
src = fetchFromGitHub {
owner = "jdublu10";
repo = "pacman";
rev = "263ae58aeb5147e2af9cc76411970ccd90fa9121";
sha256 = "02m3ic2fk3a8j50xdpq70yx30hkxzjg6idsia482sm1nlkmxxin9";
};
postUnpack = ''
mv source/src/board.idr source/src/Board.idr
'';
meta = {
description = "Proof that Idris is pacman complete";
homepage = "https://github.com/jdublu10/pacman";
maintainers = [ lib.maintainers.brainrape ];
};
}