depot/third_party/nixpkgs/pkgs/development/libraries/libvori/default.nix
Default email d2947cfef0 Project import generated by Copybara.
GitOrigin-RevId: 598f83ebeb2235435189cf84d844b8b73e858e0f
2022-10-06 20:32:54 +02:00

21 lines
584 B
Nix

{ 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 intergration of electron densities";
homepage = "https://brehm-research.de/libvori.php";
license = with licenses; [ lgpl3Only ];
platforms = platforms.unix;
maintainers = [ maintainers.sheepforce ];
};
}