about summary refs log tree commit diff
path: root/pkgs/development/libraries/libvori/default.nix
blob: 9483c2a0bb7a8cb10fc6b5235b01833151864c65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, lib, fetchurl, cmake }:

stdenv.mkDerivation rec {
  pname = "libvori";
  version = "220621";

  src = fetchurl {
    url = "https://brehm-research.de/files/${pname}-${version}.tar.gz";
    hash = "sha256-HPqYxWSBS92s8cDn8RWCE311hmj2MH5us5LHIxeYTBQ=";
  };

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
    description = "Library for Voronoi integration of electron densities";
    homepage = "https://brehm-research.de/libvori.php";
    license = with licenses; [ lgpl3Only ];
    platforms = platforms.unix;
    maintainers = [ maintainers.sheepforce ];
  };
}