pkgs/servers: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 14:24:03 +07:00
parent e245ae3c3a
commit 872973d7d1
172 changed files with 454 additions and 455 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Personal media streamer";
homepage = "https://airsonic.github.io";
license = stdenv.lib.licenses.gpl3;
license = lib.licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ disassembler ];
};
@@ -1,4 +1,4 @@
{ mkDerivation, fetchFromGitHub, base, bytestring, network, stdenv }:
{ mkDerivation, fetchFromGitHub, base, bytestring, network, lib, stdenv }:
mkDerivation {
pname = "client-ip-echo";
version = "0.1.0.5";
@@ -12,5 +12,5 @@ mkDerivation {
isExecutable = true;
executableHaskellDepends = [ base bytestring network ];
description = "accepts TCP connections and echoes the client's IP address back to it";
license = stdenv.lib.licenses.lgpl3;
license = lib.licenses.lgpl3;
}
+2 -2
View File
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, ffmpeg, ffmpegSupport ? true, makeWrapper }:
{ lib, stdenv, fetchurl, ffmpeg, ffmpegSupport ? true, makeWrapper }:
with stdenv.lib;
with lib;
stdenv.mkDerivation rec {
pname = "navidrome";
+5 -5
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, libuuid, gnutls, makeWrapper }:
{ lib, stdenv, fetchurl, cmake, libuuid, gnutls, makeWrapper }:
stdenv.mkDerivation rec {
pname = "taskserver";
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
echo wrapping $i
makeWrapper $pkipath/$i $out/bin/taskd-pki-$i \
--prefix PATH : ${stdenv.lib.makeBinPath [ gnutls ]}
--prefix PATH : ${lib.makeBinPath [ gnutls ]}
done
'';
@@ -34,8 +34,8 @@ stdenv.mkDerivation rec {
meta = {
description = "Server for synchronising Taskwarrior clients";
homepage = "https://taskwarrior.org";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer makefu ];
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ matthiasbeyer makefu ];
};
}