aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/sundials
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2019-02-03 13:55:45 +0100
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2019-02-03 13:55:45 +0100
commit784870046b926f64cdcc6bcf0746e30ed43197c8 (patch)
tree1c8d291585192f186499b879445ada662da1678e /pkgs/development/libraries/sundials
parentd16ccbefad8bf2295758ab5bd62d418c0fdba308 (diff)
sundials: remove name attribute (pname is present)
Diffstat (limited to 'pkgs/development/libraries/sundials')
-rw-r--r--pkgs/development/libraries/sundials/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/sundials/default.nix b/pkgs/development/libraries/sundials/default.nix
index 40bb8b8c43b7..b33180cec428 100644
--- a/pkgs/development/libraries/sundials/default.nix
+++ b/pkgs/development/libraries/sundials/default.nix
@@ -4,7 +4,6 @@ stdenv.mkDerivation rec {
pname = "sundials";
version = "4.0.2";
- name = "${pname}-${version}";
src = fetchurl {
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
@@ -14,7 +13,7 @@ stdenv.mkDerivation rec {
preConfigure = ''
export cmakeFlags="-DCMAKE_INSTALL_PREFIX=$out -DEXAMPLES_INSTALL_PATH=$out/share/examples $cmakeFlags"
'';
-
+
nativeBuildInputs = [ cmake ];
buildInputs = [ python ];