Skip to content

Commit

Permalink
nix: 'lib' is no longer accessible via stdenv
Browse files Browse the repository at this point in the history
  • Loading branch information
tazjin committed Sep 24, 2021
1 parent 35f0e3a commit 597c5b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/nix-derivation.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ mkDerivation, attoparsec, base, containers, criterion, deepseq
, filepath, pretty-show, QuickCheck, stdenv, text, vector
, filepath, pretty-show, QuickCheck, stdenv, text, vector, lib
}:
mkDerivation {
pname = "nix-derivation";
Expand All @@ -18,5 +18,5 @@ mkDerivation {
];
benchmarkHaskellDepends = [ attoparsec base criterion text ];
description = "Parse and render *.drv files";
license = stdenv.lib.licenses.bsd3;
license = lib.licenses.bsd3;
}

0 comments on commit 597c5b3

Please sign in to comment.