Skip to content

Commit

Permalink
Stop using deprecated stdenv.lib
Browse files Browse the repository at this point in the history
Running `nix develop` prints a warning message about using this
deprecated attribute.

See NixOS/nixpkgs#108938
  • Loading branch information
resonant-riches committed Feb 20, 2024
1 parent c998fc9 commit 879fe7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solc_0_4_24/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchzip, fetchFromGitHub, boost, cmake, z3 }:
{ stdenv, lib, fetchzip, fetchFromGitHub, boost, cmake, z3 }:

let
version = "0.4.24";
Expand Down Expand Up @@ -52,7 +52,7 @@ stdenv.mkDerivation {

outputs = [ "out" "dev" ];

meta = with stdenv.lib; {
meta = with lib; {
description = "Compiler for Ethereum smart contract language Solidity";
longDescription = "This package also includes `lllc', the LLL compiler.";
homepage = https://github.com/ethereum/solidity;
Expand Down

0 comments on commit 879fe7d

Please sign in to comment.