mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 21:13:40 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitLab, cmake, gfortran, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libxc";
|
|
version = "6.2.2";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "libxc";
|
|
repo = "libxc";
|
|
rev = version;
|
|
hash = "sha256-JYhuyW95I7Q0edLIe7H//+ej5vh6MdAGxXjmNxDMuhQ=";
|
|
};
|
|
|
|
# Timeout increase has already been included upstream in master.
|
|
# Check upon updates if this can be removed.
|
|
postPatch = ''
|
|
substituteInPlace testsuite/CMakeLists.txt \
|
|
--replace "PROPERTIES TIMEOUT 1" "PROPERTIES TIMEOUT 30"
|
|
'';
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
nativeBuildInputs = [ perl cmake gfortran ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs ./
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_FORTRAN=ON"
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DENABLE_XHOST=OFF"
|
|
# Force compilation of higher derivatives
|
|
"-DDISABLE_VXC=0"
|
|
"-DDISABLE_FXC=0"
|
|
"-DDISABLE_KXC=0"
|
|
"-DDISABLE_LXC=0"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Library of exchange-correlation functionals for density-functional theory";
|
|
mainProgram = "xc-info";
|
|
homepage = "https://www.tddft.org/programs/Libxc/";
|
|
license = licenses.mpl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
};
|
|
}
|