tomlc99: init at 0.pre+date=2022-04-04

+32
+30
pkgs/development/libraries/tomlc99/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "tomlc99"; 8 + version = "0.pre+date=2022-04-04"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "cktan"; 12 + repo = pname; 13 + rev = "4e7b082ccc44316f212597ae5b09a35cf9329e69"; 14 + hash = "sha256-R9OBMG/aUa80Qw/zqaks63F9ybQcThfOYRsHP4t1Gv8="; 15 + }; 16 + 17 + dontConfigure = true; 18 + 19 + installFlags = [ 20 + "prefix=${placeholder "out"}" 21 + ]; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/cktan/tomlc99"; 25 + description = "TOML v1.0.0-compliant library written in C99"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ AndersonTorres ]; 28 + platforms = with platforms; unix; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 20478 20478 20479 20479 kyotocabinet = callPackage ../development/libraries/kyotocabinet { }; 20480 20480 20481 + tomlc99 = callPackage ../development/libraries/tomlc99 { }; 20482 + 20481 20483 tokyocabinet = callPackage ../development/libraries/tokyo-cabinet { }; 20482 20484 20483 20485 tokyotyrant = callPackage ../development/libraries/tokyo-tyrant { };