btrbk: add mainProgram (#356350)
[NixPkgs.git] / pkgs / by-name / li / libvori / package.nix
blob9483c2a0bb7a8cb10fc6b5235b01833151864c65
1 { stdenv, lib, fetchurl, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "libvori";
5   version = "220621";
7   src = fetchurl {
8     url = "https://brehm-research.de/files/${pname}-${version}.tar.gz";
9     hash = "sha256-HPqYxWSBS92s8cDn8RWCE311hmj2MH5us5LHIxeYTBQ=";
10   };
12   nativeBuildInputs = [ cmake ];
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   };