rang: init at v3.1.0

This commit is contained in:
Rohit Goswami 2020-06-26 13:33:39 +00:00
parent b7be00ad5e
commit ead47f075a
No known key found for this signature in database
GPG key ID: 9CCCE36402CB49A6
2 changed files with 21 additions and 0 deletions

View 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 ];
};
}

View file

@ -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";