mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
30 lines
640 B
Nix
30 lines
640 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, prelude
|
|
, contrib
|
|
, lib
|
|
, idris
|
|
}:
|
|
|
|
build-idris-package {
|
|
name = "extras";
|
|
version = "2018-03-06";
|
|
|
|
idrisDeps = [ prelude contrib ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jheiling";
|
|
repo = "idris-extras";
|
|
rev = "20e79087043ddb00301cdc3036964a2b1c5b1c5f";
|
|
sha256 = "0j34a7vawrkc7nkwwnv6lsjjdcr00d85csjw06nnbh8rj4vj5ps0";
|
|
};
|
|
|
|
meta = {
|
|
description = "Some useful functions for Idris";
|
|
homepage = https://github.com/jheiling/idris-extras;
|
|
license = lib.licenses.unlicense;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
inherit (idris.meta) platforms;
|
|
};
|
|
}
|