python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / idris-modules / permutations.nix
blob6f4e299d223b352ef6318b0f8f770ec92e1c85fa
1 { build-idris-package
2 , fetchFromGitHub
3 , lib
4 }:
5 build-idris-package  {
6   pname = "permutations";
7   version = "2018-01-19";
9   src = fetchFromGitHub {
10     owner = "vmchale";
11     repo = "permutations";
12     rev = "f0de6bc721bb9d31e16f9168ded6eb6e34935881";
13     sha256 = "1dirzqy40fczbw7gp2jr51lzqsnq5vcx9z5l6194lcrq2vxgzv1s";
14   };
16   meta = {
17     description = "Type-safe way of working with permutations in Idris";
18     homepage = "https://github.com/vmchale/permutations";
19     license = lib.licenses.bsd3;
20     maintainers = [ lib.maintainers.brainrape ];
21   };