depot/pkgs/development/idris-modules/pacman.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

29 lines
620 B
Nix

{ 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 ];
};
}