pkgs/development/libraries: stdenv.lib -> lib
This commit is contained in:
committed by
Jonathan Ringer
parent
046d24424e
commit
66e44425c6
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, fetchpatch
|
||||
, boost
|
||||
@@ -50,8 +50,8 @@ let
|
||||
meta = {
|
||||
description = "Distributed just-in-time shared library building";
|
||||
homepage = "https://fenicsproject.org/";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = lib.platforms.all;
|
||||
license = lib.licenses.lgpl3;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -80,8 +80,8 @@ let
|
||||
meta = {
|
||||
description = "Automatic generation of finite element basis functions";
|
||||
homepage = "https://fenicsproject.org/";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = lib.platforms.all;
|
||||
license = lib.licenses.lgpl3;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -102,8 +102,8 @@ let
|
||||
meta = {
|
||||
description = "A domain-specific language for finite element variational forms";
|
||||
homepage = "https://fenicsproject.org/";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = lib.platforms.all;
|
||||
license = lib.licenses.lgpl3;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -139,8 +139,8 @@ let
|
||||
meta = {
|
||||
description = "A compiler for finite element variational forms";
|
||||
homepage = "https://fenicsproject.org/";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = lib.platforms.all;
|
||||
license = lib.licenses.lgpl3;
|
||||
};
|
||||
};
|
||||
dolfin = stdenv.mkDerivation {
|
||||
@@ -215,7 +215,7 @@ let
|
||||
meta = {
|
||||
description = "The FEniCS Problem Solving Environment in Python and C++";
|
||||
homepage = "https://fenicsproject.org/";
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
license = lib.licenses.lgpl3;
|
||||
};
|
||||
};
|
||||
python-dolfin = pythonPackages.buildPythonPackage rec {
|
||||
@@ -254,8 +254,8 @@ let
|
||||
meta = {
|
||||
description = "Python bindings for the DOLFIN FEM compiler";
|
||||
homepage = "https://fenicsproject.org/";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
platforms = lib.platforms.all;
|
||||
license = lib.licenses.lgpl3;
|
||||
};
|
||||
};
|
||||
in python-dolfin
|
||||
|
||||
Reference in New Issue
Block a user