libvori: init at 210412 (#127373)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Phillip 2021-06-18 20:36:10 +02:00 committed by GitHub
parent 927ad99728
commit 8534a4e1a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ 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 ];
};
}

View file

@ -16997,6 +16997,8 @@ in
libvorbis = callPackage ../development/libraries/libvorbis { };
libvori = callPackage ../development/libraries/libvori { };
libwebcam = callPackage ../os-specific/linux/libwebcam { };
libwebp = callPackage ../development/libraries/libwebp { };