Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ build-idris-package 2, fetchFromGitHub 3, lib 4}: 5build-idris-package { 6 pname = "permutations"; 7 version = "2018-01-19"; 8 9 src = fetchFromGitHub { 10 owner = "vmchale"; 11 repo = "permutations"; 12 rev = "f0de6bc721bb9d31e16f9168ded6eb6e34935881"; 13 sha256 = "1dirzqy40fczbw7gp2jr51lzqsnq5vcx9z5l6194lcrq2vxgzv1s"; 14 }; 15 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 }; 22}