at v192 19 lines 540 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libconfig-${version}"; 5 version = "1.4.9"; 6 7 src = fetchurl { 8 url = "http://www.hyperrealm.com/libconfig/${name}.tar.gz"; 9 sha256 = "0h9h8xjd36lky2r8jyc6hw085xwpslf0x6wyjvi960g6aa99gj09"; 10 }; 11 12 meta = with stdenv.lib; { 13 homepage = http://www.hyperrealm.com/libconfig; 14 description = "a simple library for processing structured configuration files"; 15 license = licenses.lgpl3; 16 maintainers = [ maintainers.goibhniu ]; 17 platforms = platforms.linux; 18 }; 19}