Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
711 B
Nix
33 lines
711 B
Nix
{
|
|
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;
|
|
};
|
|
}
|