From ba9803079c93799f66b0f0ac6800f883e2fb479e Mon Sep 17 00:00:00 2001 From: Maurizio Di Pietro Date: Fri, 6 Jan 2017 11:00:43 +0100 Subject: [PATCH] chase: avoided using fq attribute names --- pkgs/tools/system/chase/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/system/chase/default.nix b/pkgs/tools/system/chase/default.nix index 15d2b16faee..ebad6933936 100644 --- a/pkgs/tools/system/chase/default.nix +++ b/pkgs/tools/system/chase/default.nix @@ -14,14 +14,14 @@ stdenv.mkDerivation rec { makeFlags = [ "-e" ]; makeFlagsArray="LIBS=-lgc"; - meta = { + meta = with stdenv.lib ; { description = "Follow a symlink and print out its target file"; longDescription = '' A commandline program that chases symbolic filesystems links to the original file ''; homepage = "https://qa.debian.org/developer.php?login=rotty%40debian.org"; - license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.polyrod ]; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl2Plus; + maintainers = [ maintainers.polyrod ]; + platforms = platforms.all; }; }