1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00

chase: avoided using fq attribute names

This commit is contained in:
Maurizio Di Pietro 2017-01-06 11:00:43 +01:00
parent ad507954fa
commit ba9803079c

View file

@ -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;
};
}