Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
711 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
};
}