depot/third_party/nixpkgs/pkgs/development/libraries/libvori/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

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