replace stdenv.lib with lib because deprecated
This commit is contained in:
parent
fccb150d3c
commit
668a3fa4ee
3 changed files with 5 additions and 5 deletions
|
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||
$out/bin/DesktopVideoHelper
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.blackmagicdesign.com/support/family/capture-and-playback";
|
||||
maintainers = [ maintainers.hexchen ];
|
||||
license = licenses.unfree;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, requireFile, fetchpatch, kernel }:
|
||||
{ stdenv, requireFile, fetchpatch, kernel, lib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "decklink";
|
||||
|
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
|||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.blackmagicdesign.com/support/family/capture-and-playback";
|
||||
maintainers = [ maintainers.hexchen ];
|
||||
license = licenses.unfree;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, fetchFromGitHub, buildGoPackage, buildEnv }:
|
||||
{ stdenv, fetchurl, fetchFromGitHub, buildGoPackage, buildEnv, lib }:
|
||||
|
||||
let
|
||||
sources = import ../../nix/sources.nix;
|
||||
|
@ -40,7 +40,7 @@ in
|
|||
name = "mattermost-${version}";
|
||||
paths = [ mattermost-server mattermost-webapp ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Open-source, self-hosted Slack-alternative";
|
||||
homepage = "https://www.mattermost.org";
|
||||
license = with licenses; [ agpl3 asl20 ];
|
||||
|
|
Loading…
Reference in a new issue