diff options
author | makefu <github@syntax-fehler.de> | 2021-12-04 21:24:48 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-12-04 21:24:48 +0100 |
commit | 7ca789f598c856ceda3ac55d028ab5a8a8a1e6a2 (patch) | |
tree | 9793b82947801f39f55b393cd02951c25de26099 /makefu/5pkgs/custom/qcma/default.nix | |
parent | 4f500d5006b9a1594589b60278515220ed4b75da (diff) |
ma pkgs: stdenv.lib -> lib
Diffstat (limited to 'makefu/5pkgs/custom/qcma/default.nix')
-rw-r--r-- | makefu/5pkgs/custom/qcma/default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/makefu/5pkgs/custom/qcma/default.nix b/makefu/5pkgs/custom/qcma/default.nix index dfb57c880..670822f33 100644 --- a/makefu/5pkgs/custom/qcma/default.nix +++ b/makefu/5pkgs/custom/qcma/default.nix @@ -22,9 +22,9 @@ let meta = { description = "Content Manager Assistant for the PS Vita"; homepage = https://github.com/codestation/qcma; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ makefu ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ makefu ]; }; }; in stdenv.mkDerivation rec { @@ -50,8 +50,8 @@ in stdenv.mkDerivation rec { meta = { description = "Content Manager Assistant for the PS Vita"; homepage = https://github.com/codestation/qcma; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ makefu ]; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ makefu ]; }; } |