Skip to content

Commit

Permalink
geant4: fix eval
Browse files Browse the repository at this point in the history
Regression from 66e4442
  • Loading branch information
FRidh committed Jan 22, 2021
1 parent 65a6c52 commit 59863dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/physics/geant4/datasets.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, geant_version }:
{ lib, stdenv, fetchurl, geant_version }:

let
mkDataset = { name, version, sha256, envvar }:
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/physics/geant4/default.nix
Expand Up @@ -107,7 +107,7 @@ stdenv.mkDerivation rec {

passthru = {
data = import ./datasets.nix {
inherit stdenv fetchurl;
inherit lib stdenv fetchurl;
geant_version = version;
};

Expand Down

1 comment on commit 59863dc

@jonringer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was looking into https://hydra.nixos.org/build/135415393/nixlog/1 and then noticed that it worked locally.

Please sign in to comment.