diff options
author | Akira Komamura <akira.komamura@gmail.com> | 2022-01-25 16:27:42 +0900 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2022-01-25 17:36:59 +0800 |
commit | 436895905d19f8ef0d3258cd515052a0e540b8b4 (patch) | |
tree | 32f60714c1efab88ce0e9f0f4e0aa1bc938b0a1e /default.nix | |
parent | ef5a2286f5797fb30af91d53d1c8aa5fd745831f (diff) | |
download | fork-ledger-436895905d19f8ef0d3258cd515052a0e540b8b4.tar.gz fork-ledger-436895905d19f8ef0d3258cd515052a0e540b8b4.tar.bz2 fork-ledger-436895905d19f8ef0d3258cd515052a0e540b8b4.zip |
Fix the other occurrences of stdenv.lib
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix index 24d73043..4d95c529 100644 --- a/default.nix +++ b/default.nix @@ -51,7 +51,7 @@ pkgs.stdenv.mkDerivation { their data, there really is no alternative. ''; - platforms = pkgs.stdenv.lib.platforms.all; - maintainers = with pkgs.stdenv.lib.maintainers; [ jwiegley ]; + platforms = pkgs.lib.platforms.all; + maintainers = with pkgs.lib.maintainers; [ jwiegley ]; }; } |