mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
f0e64ce16f
Manual migration for the sake of by-name migration is no longer discouraged since #340235.
27 lines
644 B
Nix
27 lines
644 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tomlcpp";
|
|
version = "0.pre+date=2022-06-25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cktan";
|
|
repo = pname;
|
|
rev = "4212f1fccf530e276a2e1b63d3f99fbfb84e86a4";
|
|
hash = "sha256-PM3gURXhyTZr59BWuLHvltjKOlKUSBT9/rqTeX5V//k=";
|
|
};
|
|
|
|
dontConfigure = true;
|
|
|
|
installFlags = [
|
|
"prefix=${placeholder "out"}"
|
|
];
|
|
|
|
meta = with lib;{
|
|
homepage = "https://github.com/cktan/tomlcpp";
|
|
description = "No fanfare TOML C++ Library";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|