22 lines
587 B
Nix
22 lines
587 B
Nix
|
{ stdenv, lib, fetchurl, cmake }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "libvori";
|
||
|
version = "210412";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://brehm-research.de/files/${pname}-${version}.tar.gz";
|
||
|
sha256 = "1b4hpwibf3k7gl6n984l3wdi0zyl2fmpz84m9g2di4yhm6p8c61k";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cmake ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Library for Voronoi intergration of electron densities";
|
||
|
homepage = "https://brehm-research.de/libvori.php";
|
||
|
license = with licenses; [ lgpl3Only ];
|
||
|
platforms = platforms.unix;
|
||
|
maintainers = [ maintainers.sheepforce ];
|
||
|
};
|
||
|
}
|