mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
lightyear: init at 9420f9e
This commit is contained in:
parent
7bda74f676
commit
0b532b7d2a
32
pkgs/development/idris-modules/lightyear.nix
Normal file
32
pkgs/development/idris-modules/lightyear.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ build-idris-package
|
||||
, fetchFromGitHub
|
||||
, prelude
|
||||
, base
|
||||
, effects
|
||||
, lib
|
||||
, idris
|
||||
}:
|
||||
|
||||
let
|
||||
date = "2016-08-01";
|
||||
in
|
||||
build-idris-package {
|
||||
name = "lightyear-${date}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ziman";
|
||||
repo = "lightyear";
|
||||
rev = "9420f9e892e23a7016dea1a61d8ce43a6d4ecf15";
|
||||
sha256 = "0xbjwq7sk4x78mi2zcqxbx7wziijlr1ayxihb1vml33lqmsgl1dn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ prelude base effects ];
|
||||
|
||||
meta = {
|
||||
description = "Parser combinators for Idris";
|
||||
homepage = https://github.com/ziman/lightyear;
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = [ lib.maintainers.siddharthist ];
|
||||
inherit (idris.meta) platforms;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user