lol
at 17.09-beta 27 lines 852 B view raw
1{ stdenv, fetchurl ,pkgconfig, libatomic_ops , boehmgc }: 2 3stdenv.mkDerivation rec { 4 name = "chase-${version}"; 5 version = "0.5.2"; 6 7 buildInputs = [ pkgconfig libatomic_ops boehmgc ] ; 8 src = fetchurl { 9 url = "mirror://debian/pool/main/c/chase/chase_${version}.orig.tar.gz"; 10 sha256 = "68d95c2d4dc45553b75790fcea4413b7204a2618dff148116ca9bdb0310d737f"; 11 }; 12 13 doCheck = true; 14 makeFlags = [ "-e" ]; 15 makeFlagsArray="LIBS=-lgc"; 16 17 meta = with stdenv.lib ; { 18 description = "Follow a symlink and print out its target file"; 19 longDescription = '' 20 A commandline program that chases symbolic filesystems links to the original file 21 ''; 22 homepage = https://qa.debian.org/developer.php?login=rotty%40debian.org; 23 license = licenses.gpl2Plus; 24 maintainers = [ maintainers.polyrod ]; 25 platforms = platforms.all; 26 }; 27}