1{ stdenv, lib, fetchurl, cmake }:
2
3stdenv.mkDerivation rec {
4 pname = "libvori";
5 version = "220621";
6
7 src = fetchurl {
8 url = "https://brehm-research.de/files/${pname}-${version}.tar.gz";
9 hash = "sha256-HPqYxWSBS92s8cDn8RWCE311hmj2MH5us5LHIxeYTBQ=";
10 };
11
12 nativeBuildInputs = [ cmake ];
13
14 meta = with lib; {
15 description = "Library for Voronoi integration of electron densities";
16 homepage = "https://brehm-research.de/libvori.php";
17 license = with licenses; [ lgpl3Only ];
18 platforms = platforms.unix;
19 maintainers = [ maintainers.sheepforce ];
20 };
21}