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
29
postInstall = ''
30
substituteInPlace $out/lib/pkgconfig/s-dftd3.pc \
31
-
--replace "''${prefix}" ""
32
'';
33
34
doCheck = true;
···
38
39
meta = with lib; {
40
description = "Reimplementation of the DFT-D3 program";
41
-
license = with licenses; [lgpl3Only gpl3Only];
42
homepage = "https://github.com/dftd3/simple-dftd3";
43
platforms = [ "x86_64-linux" ];
44
maintainers = [ maintainers.sheepforce ];
···
28
29
postInstall = ''
30
substituteInPlace $out/lib/pkgconfig/s-dftd3.pc \
31
+
--replace "''${prefix}/" ""
32
'';
33
34
doCheck = true;
···
38
39
meta = with lib; {
40
description = "Reimplementation of the DFT-D3 program";
41
+
license = with licenses; [ lgpl3Only gpl3Only ];
42
homepage = "https://github.com/dftd3/simple-dftd3";
43
platforms = [ "x86_64-linux" ];
44
maintainers = [ maintainers.sheepforce ];