Merge pull request #34281 from markuskowa/libxc-pr

libxc: 2.2.3 -> 3.0.1
This commit is contained in:
adisbladis 2018-01-26 15:43:22 +08:00 committed by GitHub
commit df54d823d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,13 @@
{ stdenv, fetchurl, gfortran, perl }:
let
version = "2.2.3";
version = "3.0.1";
in stdenv.mkDerivation {
name = "libxc-${version}";
src = fetchurl {
url = "http://www.tddft.org/programs/octopus/down.php?file=libxc/libxc-${version}.tar.gz";
sha256 = "1rv8vsf7zzw0g7j93rqcipzhk2pj1iq71bpkwf7zxivmgavh0arg";
url = "http://www.tddft.org/programs/octopus/down.php?file=libxc/${version}/libxc-${version}.tar.gz";
sha256 = "1xyac89yx03vm86rvk07ps1d39xss3amw46a1k53mv30mgr94rl3";
};
buildInputs = [ gfortran ];