tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
simple-dftd3: fix pkg-config
Ryan Swart
2 years ago
d86d2e7f
15be8180
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
science
chemistry
simple-dftd3
default.nix
+2
-2
pkgs/development/libraries/science/chemistry/simple-dftd3/default.nix
···
28
28
29
29
postInstall = ''
30
30
substituteInPlace $out/lib/pkgconfig/s-dftd3.pc \
31
31
-
--replace "''${prefix}" ""
31
31
+
--replace "''${prefix}/" ""
32
32
'';
33
33
34
34
doCheck = true;
···
38
38
39
39
meta = with lib; {
40
40
description = "Reimplementation of the DFT-D3 program";
41
41
-
license = with licenses; [lgpl3Only gpl3Only];
41
41
+
license = with licenses; [ lgpl3Only gpl3Only ];
42
42
homepage = "https://github.com/dftd3/simple-dftd3";
43
43
platforms = [ "x86_64-linux" ];
44
44
maintainers = [ maintainers.sheepforce ];