blob: e4b2fa88449d8797281557cfb8f469b3d5a97ed8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
build-idris-package,
fetchFromGitHub,
lib,
}:
build-idris-package {
pname = "quantities";
version = "2018-04-17";
src = fetchFromGitHub {
owner = "timjb";
repo = "quantities";
rev = "76bb872bd89122043083351993140ae26eb91ead";
sha256 = "0fv12kdi9089b4kkr6inhqvs2s8x62nv5vqj76wzk8hy0lrzylzj";
};
meta = {
description = "Type-safe physical computations and unit conversions in Idris";
homepage = "https://github.com/timjb/quantities";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ imuli ];
};
}
|