pleroma-otp: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob 2021-01-30 17:19:29 +07:00
parent 2726b2f79b
commit 08ce0156e4

View File

@ -1,4 +1,5 @@
{ stdenv { lib
, stdenv
, autoPatchelfHook , autoPatchelfHook
, fetchurl , fetchurl
, file , file
@ -60,11 +61,11 @@ stdenv.mkDerivation {
pleroma = nixosTests.pleroma; pleroma = nixosTests.pleroma;
}; };
meta = { meta = with lib; {
description = "ActivityPub microblogging server"; description = "ActivityPub microblogging server";
homepage = https://git.pleroma.social/pleroma/pleroma; homepage = https://git.pleroma.social/pleroma/pleroma;
license = stdenv.lib.licenses.agpl3; license = licenses.agpl3;
maintainers = with stdenv.lib.maintainers; [ ninjatrappeur ]; maintainers = with maintainers; [ ninjatrappeur ];
platforms = [ "x86_64-linux" "aarch64-linux" ]; platforms = [ "x86_64-linux" "aarch64-linux" ];
}; };
} }