Merge pull request #143746 from vojta001/stderred

This commit is contained in:
Sandro 2021-11-22 16:28:38 +01:00 committed by GitHub
commit ad74d444ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ 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 = "stderr in red";
homepage = "https://github.com/sickill/stderred";
license = licenses.mit;
maintainers = with maintainers; [ vojta001 ];
platforms = platforms.unix;
};
}

View File

@ -9610,6 +9610,8 @@ with pkgs;
stdman = callPackage ../data/documentation/stdman { };
stderred = callPackage ../tools/misc/stderred { };
steck = callPackage ../servers/pinnwand/steck.nix { };
stenc = callPackage ../tools/backup/stenc { };