lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 25 lines 573 B view raw
1{ build-idris-package 2, fetchFromGitHub 3, contrib 4, lib 5}: 6build-idris-package { 7 pname = "pfds"; 8 version = "2017-09-25"; 9 10 idrisDeps = [ contrib ]; 11 12 src = fetchFromGitHub { 13 owner = "timjb"; 14 repo = "idris-pfds"; 15 rev = "9ba39348adc45388eccf6463855f42b81333620a"; 16 sha256 = "0jbrwdpzg5hgmkfk2kj5y8lgaynl79h48qdvkl1glypfh392w35f"; 17 }; 18 19 meta = { 20 description = "Purely functional data structures in Idris"; 21 homepage = "https://github.com/timjb/idris-pfds"; 22 license = lib.licenses.mit; 23 maintainers = [ lib.maintainers.brainrape ]; 24 }; 25}