nixpkgs/pkgs/development/libraries/libvori/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
583 B
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, cmake }:
stdenv.mkDerivation rec {
pname = "libvori";
2022-10-04 14:01:15 +00:00
version = "220621";
src = fetchurl {
url = "https://brehm-research.de/files/${pname}-${version}.tar.gz";
2022-10-04 14:01:15 +00:00
hash = "sha256-HPqYxWSBS92s8cDn8RWCE311hmj2MH5us5LHIxeYTBQ=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
2023-05-12 08:41:28 +00:00
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 ];
};
}