summary refs log blame commit diff
path: root/pkgs/development/libraries/libdivecomputer/default.nix
blob: 4a9a4b0980e3960b26a92982dae0cbac7364add8 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          

                         
                            
                    

                  
                                                                                
                                                                   



                                
                    
                                                





                                                                                                                              
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "libdivecomputer";
  version = "0.7.0";

  src = fetchurl {
    url = "https://www.libdivecomputer.org/releases/${pname}-${version}.tar.gz";
    sha256 = "sha256-gNnxlOokUCA535hZhILgr8aw4zPeeds0wpstaJNNJbk=";
  };

  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "http://www.libdivecomputer.org";
    description = "A cross-platform and open source library for communication with dive computers from various manufacturers";
    maintainers = [ maintainers.mguentner ];
    license = licenses.lgpl21;
    platforms = platforms.all;
  };
}