pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / idris-modules / xhr.nix
blobe8dc37d439898ee4d6fc599e5f42420c59e8d5f8
1 { build-idris-package
2 , fetchFromGitHub
3 , idrisscript
4 , lib
5 }:
6 build-idris-package  {
7   pname = "xhr";
8   version = "2017-04-22";
10   idrisDeps = [ idrisscript ];
12   src = fetchFromGitHub {
13     owner = "pierrebeaucamp";
14     repo = "idris-xhr";
15     rev = "fb32a748ccdb9070de3f2d6048564e34c064b362";
16     sha256 = "0l07mnarvrb4xdw0b2xqgyxq4rljw1axz5mc9w4gmhvcrzxnyfnr";
17   };
19   meta = {
20     description = "Idris library to interact with xhr";
21     homepage = "https://github.com/pierrebeaucamp/idris-xhr";
22     license = lib.licenses.asl20;
23     maintainers = [ lib.maintainers.brainrape ];
24   };