1{
2 build-idris-package,
3 fetchFromGitHub,
4 lib,
5}:
6build-idris-package {
7 pname = "pipes";
8 version = "2017-12-02";
9
10 src = fetchFromGitHub {
11 owner = "QuentinDuval";
12 repo = "IdrisPipes";
13 rev = "888abe405afce42015014899682c736028759d42";
14 sha256 = "1dxbqzg0qy7lkabmkj0qypywdjz5751g7h2ql8b2253dy3v0ndbs";
15 };
16
17 meta = {
18 description = "Composable and effectful production, transformation and consumption of streams of data";
19 homepage = "https://github.com/QuentinDuval/IdrisPipes";
20 license = lib.licenses.bsd3;
21 maintainers = [ lib.maintainers.brainrape ];
22 };
23}