Merge pull request #266961 from mayl/openems

openems: unstable-2020-02-15 -> 0.0.36
This commit is contained in:
Peder Bergebakken Sundt 2023-12-05 02:38:30 +01:00 committed by GitHub
commit 87639758aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 21 deletions

View file

@ -13,13 +13,13 @@
stdenv.mkDerivation rec {
pname = "csxcad";
version = "unstable-2022-05-18";
version = "0.6.3";
src = fetchFromGitHub {
owner = "thliebig";
repo = "CSXCAD";
rev = "cd9decb4d9cebe3c8bf115e2c0ee73f730f22da1";
sha256 = "1604amhvp7dm8ych7gwzxwawqvb9hpjglk5ffd4qm0y3k6r89arn";
rev = "v${version}";
sha256 = "sha256-SSV5ulx3rCJg99I/oOQbqe+gOSs+BfcCo6UkWHVhnSs=";
};
patches = [./searchPath.patch ];

View file

@ -18,15 +18,15 @@
, hyp2mat
}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "openems";
version = "unstable-2020-02-15";
version = "0.0.36";
src = fetchFromGitHub {
owner = "thliebig";
repo = "openEMS";
rev = "ba793ac84e2f78f254d6d690bb5a4c626326bbfd";
sha256 = "1dca6b6ccy771irxzsj075zvpa3dlzv4mjb8xyg9d889dqlgyl45";
rev = "v${version}";
sha256 = "sha256-wdH+Zw7G2ZigzBMX8p3GKdFVx/AhbTNL+P3w+YjI/dc=";
};
nativeBuildInputs = [

View file

@ -10,14 +10,9 @@
buildPythonPackage rec {
pname = "python-csxcad";
version = "unstable-2020-02-18";
version = csxcad.version;
src = fetchFromGitHub {
owner = "thliebig";
repo = "CSXCAD";
rev = "ef6e40931dbd80e0959f37c8e9614c437bf7e518";
sha256 = "072s765jyzpdq8qqysdy0dld17m6sr9zfcs0ip2zk8c4imxaysnb";
};
src = csxcad.src;
sourceRoot = "${src.name}/python";

View file

@ -12,14 +12,9 @@
buildPythonPackage rec {
pname = "python-openems";
version = "unstable-2020-02-15";
version = openems.version;
src = fetchFromGitHub {
owner = "thliebig";
repo = "openEMS";
rev = "ba793ac84e2f78f254d6d690bb5a4c626326bbfd";
sha256 = "1dca6b6ccy771irxzsj075zvpa3dlzv4mjb8xyg9d889dqlgyl45";
};
src = openems.src;
sourceRoot = "${src.name}/python";