1{
2 build-idris-package,
3 fetchFromGitHub,
4 lib,
5}:
6build-idris-package {
7 pname = "permutations";
8 version = "2018-01-19";
9
10 src = fetchFromGitHub {
11 owner = "vmchale";
12 repo = "permutations";
13 rev = "f0de6bc721bb9d31e16f9168ded6eb6e34935881";
14 sha256 = "1dirzqy40fczbw7gp2jr51lzqsnq5vcx9z5l6194lcrq2vxgzv1s";
15 };
16
17 meta = {
18 description = "Type-safe way of working with permutations in Idris";
19 homepage = "https://github.com/vmchale/permutations";
20 license = lib.licenses.bsd3;
21 maintainers = [ lib.maintainers.brainrape ];
22 };
23}