blob: 997a1cc1a62373bb5dacb7090e5263867d88e029 (
about) (
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
28
29
30
31
32
|
{
stdenv,
fetchFromGitHub,
cmake,
lib,
}:
stdenv.mkDerivation rec {
pname = "stderred";
version = "unstable-2021-04-28";
src = fetchFromGitHub {
owner = "sickill";
repo = "stderred";
rev = "b2238f7c72afb89ca9aaa2944d7f4db8141057ea";
sha256 = "sha256-k/EA327AsRHgUYu7QqSF5yzOyO6h5XcE9Uv4l1VcIPI=";
};
nativeBuildInputs = [
cmake
];
sourceRoot = "${src.name}/src";
meta = with lib; {
description = "Colorize all stderr output that goes to terminal, making it distinguishable from stdout";
homepage = "https://github.com/sickill/stderred";
license = licenses.mit;
maintainers = with maintainers; [ vojta001 ];
platforms = platforms.unix;
};
}
|