blob: 8ceefe8edf96165a54a55fd8ccd873575a49e70a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "rang";
version = "3.3";
src = fetchFromGitHub {
owner = "agauniyal";
repo = "rang";
tag = "v${finalAttrs.version}";
hash = "sha256-YJn9SnTBAJ/lPhBRjIlFgRRageeX3wximuAvbXyhgfg=";
};
nativeBuildInputs = [ cmake ];
meta = {
description = "Minimal, Header only Modern c++ library for terminal goodies";
homepage = "https://agauniyal.github.io/rang/";
license = lib.licenses.unlicense;
maintainers = [ ];
};
})
|