linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libxc / default.nix
blobf78cd09c0ae06ad9c48ccb72807edd333da11d4c
1 { lib, stdenv, fetchFromGitLab, cmake, gfortran, perl }:
3 let
4   version = "5.1.2";
6 in stdenv.mkDerivation {
7   pname = "libxc";
8   inherit version;
10   src = fetchFromGitLab {
11     owner = "libxc";
12     repo = "libxc";
13     rev = version;
14     sha256 = "1bcj7x0kaal62m41v9hxb4h1d2cxs2ynvsfqqg7c5yi7829nvapb";
15   };
17   buildInputs = [ gfortran ];
18   nativeBuildInputs = [ perl cmake ];
20   preConfigure = ''
21     patchShebangs ./
22   '';
24   cmakeFlags = [ "-DENABLE_FORTRAN=ON" "-DBUILD_SHARED_LIBS=ON" ];
26   preCheck = ''
27     export LD_LIBRARY_PATH=$(pwd)
28   '';
30   doCheck = true;
31   enableParallelBuilding = true;
33   meta = with lib; {
34     description = "Library of exchange-correlation functionals for density-functional theory";
35     homepage = "https://www.tddft.org/programs/Libxc/";
36     license = licenses.mpl20;
37     platforms = [ "x86_64-linux" ];
38     maintainers = with maintainers; [ markuskowa ];
39   };