os/pkgs/development/libraries/libinih/default.nix

31 lines
670 B
Nix
Raw Normal View History

2020-06-17 20:14:37 -06:00
{ stdenv, meson, ninja, fetchFromGitHub, ... }:
let version = "r50";
2020-07-30 22:17:28 -06:00
in
stdenv.mkDerivation {
2020-06-19 14:55:30 -06:00
pname = "libinih";
inherit version;
2020-06-17 20:14:37 -06:00
src = fetchFromGitHub {
owner = "benhoyt";
repo = "inih";
rev = "${version}";
hash = "sha256-GF+TVEysaXJxSBBjMsTr2IQvRKlzdEu3rlPQ88PE3nI=";
};
buildInputs = [ meson ninja ];
mesonFlags = ''
-Ddefault_library=shared
-Ddistro_install=true
'';
2020-06-19 14:55:30 -06:00
meta = with stdenv.lib; {
description = "Simple .INI file parser in C";
homepage = "https://github.com/benhoyt/inih";
maintainers = [ maintainers.nrdxp ];
license = licenses.bsd3;
2020-08-04 00:25:28 -06:00
platforms = platforms.all;
2020-06-19 14:55:30 -06:00
inherit version;
};
2020-06-17 20:14:37 -06:00
}