1 { lib, stdenv, fetchurl ,pkg-config, libatomic_ops , boehmgc }:
3 stdenv.mkDerivation rec {
7 nativeBuildInputs = [ pkg-config ];
8 buildInputs = [ libatomic_ops boehmgc ] ;
10 url = "mirror://debian/pool/main/c/chase/chase_${version}.orig.tar.gz";
11 sha256 = "68d95c2d4dc45553b75790fcea4413b7204a2618dff148116ca9bdb0310d737f";
15 makeFlags = [ "-e" "LIBS=-lgc" ];
18 description = "Follow a symlink and print out its target file";
20 A commandline program that chases symbolic filesystems links to the original file
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 mainProgram = "chase";