mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
rang: init at v3.1.0
This commit is contained in:
parent
b7be00ad5e
commit
ead47f075a
19
pkgs/development/libraries/rang/default.nix
Normal file
19
pkgs/development/libraries/rang/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rang";
|
||||
version = "v3.1.0";
|
||||
src = fetchFromGitHub {
|
||||
"owner" = "agauniyal";
|
||||
repo = "rang";
|
||||
"rev" = "cabe04d6d6b05356fa8f9741704924788f0dd762";
|
||||
"sha256" = "0v2pz0l2smagr3j4abjccshg4agaccfz79m5ayvrvqq5d4rlds0s";
|
||||
};
|
||||
nativeBuildInputs = [ cmake ];
|
||||
meta = with stdenv.lib; {
|
||||
description =
|
||||
"A Minimal, Header only Modern c++ library for terminal goodies";
|
||||
homepage = "https://agauniyal.github.io/rang/";
|
||||
license = licenses.unlicense;
|
||||
maintainers = [ maintainers.HaoZeke ];
|
||||
};
|
||||
}
|
@ -14016,6 +14016,8 @@ in
|
||||
|
||||
libyamlcpp = callPackage ../development/libraries/libyaml-cpp { };
|
||||
|
||||
rang = callPackage ../development/libraries/rang { };
|
||||
|
||||
libyamlcpp_0_3 = pkgs.libyamlcpp.overrideAttrs (oldAttrs: {
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/jbeder/yaml-cpp/archive/release-0.3.0.tar.gz";
|
||||
|
Loading…
Reference in New Issue
Block a user