nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 32 lines 637 B view raw
1{ 2 stdenv, 3 fetchFromGitHub, 4 cmake, 5 lib, 6}: 7 8stdenv.mkDerivation rec { 9 pname = "stderred"; 10 version = "unstable-2021-04-28"; 11 12 src = fetchFromGitHub { 13 owner = "sickill"; 14 repo = "stderred"; 15 rev = "b2238f7c72afb89ca9aaa2944d7f4db8141057ea"; 16 sha256 = "sha256-k/EA327AsRHgUYu7QqSF5yzOyO6h5XcE9Uv4l1VcIPI="; 17 }; 18 19 nativeBuildInputs = [ 20 cmake 21 ]; 22 23 sourceRoot = "${src.name}/src"; 24 25 meta = with lib; { 26 description = "stderr in red"; 27 homepage = "https://github.com/sickill/stderred"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ vojta001 ]; 30 platforms = platforms.unix; 31 }; 32}