nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 build-idris-package,
3 fetchFromGitHub,
4 idrisscript,
5 lib,
6}:
7build-idris-package {
8 pname = "xhr";
9 version = "2017-04-22";
10
11 idrisDeps = [ idrisscript ];
12
13 src = fetchFromGitHub {
14 owner = "pierrebeaucamp";
15 repo = "idris-xhr";
16 rev = "fb32a748ccdb9070de3f2d6048564e34c064b362";
17 sha256 = "0l07mnarvrb4xdw0b2xqgyxq4rljw1axz5mc9w4gmhvcrzxnyfnr";
18 };
19
20 meta = {
21 description = "Idris library to interact with xhr";
22 homepage = "https://github.com/pierrebeaucamp/idris-xhr";
23 license = lib.licenses.asl20;
24 maintainers = [ lib.maintainers.brainrape ];
25 };
26}