pkgs/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 17:12:36 +07:00
parent 94f3683935
commit 8c5d37129f
916 changed files with 2510 additions and 2510 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl }:
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
@@ -25,15 +25,15 @@ stdenv.mkDerivation rec {
description = "Command-line RTMP client";
longDescription =
'' flvstreamer is an open source command-line RTMP client intended to
'' flvstreamer is an open source command-line RTMP client intended to
stream audio or video content from all types of flash or rtmp servers.
'';
license = stdenv.lib.licenses.gpl2Plus;
license = lib.licenses.gpl2Plus;
homepage = "https://savannah.nongnu.org/projects/flvstreamer";
maintainers = [ stdenv.lib.maintainers.thammers ];
platforms = with stdenv.lib.platforms; linux ++ darwin;
maintainers = [ lib.maintainers.thammers ];
platforms = with lib.platforms; linux ++ darwin;
};
}