nixpkgs/pkgs/development/idris-modules/snippets.nix

27 lines
605 B
Nix
Raw Normal View History

2018-03-16 11:40:17 +00:00
{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
name = "snippets";
version = "2018-03-17";
2018-09-18 08:38:59 +00:00
ipkgName = "idris-snippets";
2018-07-02 03:18:21 +00:00
idrisDeps = [ contrib ];
2018-03-16 11:40:17 +00:00
src = fetchFromGitHub {
owner = "palladin";
repo = "idris-snippets";
rev = "c26d6f5ffc1cc0456279f5ac74fec5af8c09025e";
sha256 = "1vwyzck6yan3wifsyj02ji9l6x9rs2r02aybm90gl676s2x4mhjn";
};
meta = {
description = "Collection of Idris snippets";
homepage = https://github.com/palladin/idris-snippets;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.brainrape ];
};
}