no stdenv.lib

This commit is contained in:
Daniel Olsen
2021-05-03 14:21:16 +02:00
parent 2ba1bb9605
commit 06eb350879
5 changed files with 10 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
{stdenv, fetchFromGitHub, libpng, libjpeg, giflib, perl, pkg-config}:
{ lib, stdenv, fetchFromGitHub, libpng, libjpeg, giflib, perl, pkg-config}:
stdenv.mkDerivation {
pname = "metapixel";
@@ -24,10 +24,10 @@ stdenv.mkDerivation {
cp metapixel-sizesort $out/bin/metapixel-sizesort
'';
meta = with stdenv.lib; {
meta = with lib; {
homepage = "https://github.com/schani/metapixel";
description = "Tool for generating photomosaics";
license = licenses.gpl2;
maintainers = with maintainers; [ dandellion ];
# maintainers = with maintainers; [ dandellion ];
};
}