at 18.09-beta 21 lines 623 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libdivecomputer-${version}"; 5 version = "0.6.0"; 6 7 src = fetchurl { 8 url = "https://www.libdivecomputer.org/releases/${name}.tar.gz"; 9 sha256 = "0nm1mcscpxb9dv4p0lidd6rf5xg4vmcbigj6zqxvgn7pwnvpbzm0"; 10 }; 11 12 enableParallelBuilding = true; 13 14 meta = with stdenv.lib; { 15 homepage = http://www.libdivecomputer.org; 16 description = "A cross-platform and open source library for communication with dive computers from various manufacturers"; 17 maintainers = [ maintainers.mguentner ]; 18 license = licenses.lgpl21; 19 platforms = platforms.all; 20 }; 21}