2017-01-02 16:22:01 +00:00
|
|
|
{ stdenv, fetchurl ,pkgconfig, libatomic_ops , boehmgc }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "chase";
|
2017-01-04 11:43:06 +00:00
|
|
|
version = "0.5.2";
|
2017-01-02 16:22:01 +00:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libatomic_ops boehmgc ] ;
|
2017-01-02 16:22:01 +00:00
|
|
|
src = fetchurl {
|
2017-01-04 11:43:06 +00:00
|
|
|
url = "mirror://debian/pool/main/c/chase/chase_${version}.orig.tar.gz";
|
2017-01-02 16:22:01 +00:00
|
|
|
sha256 = "68d95c2d4dc45553b75790fcea4413b7204a2618dff148116ca9bdb0310d737f";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
makeFlags = [ "-e" ];
|
|
|
|
makeFlagsArray="LIBS=-lgc";
|
|
|
|
|
2017-01-06 10:00:43 +00:00
|
|
|
meta = with stdenv.lib ; {
|
2017-01-02 16:22:01 +00:00
|
|
|
description = "Follow a symlink and print out its target file";
|
|
|
|
longDescription = ''
|
|
|
|
A commandline program that chases symbolic filesystems links to the original file
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://qa.debian.org/developer.php?login=rotty%40debian.org";
|
2017-01-06 10:00:43 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.polyrod ];
|
|
|
|
platforms = platforms.all;
|
2017-01-02 16:22:01 +00:00
|
|
|
};
|
|
|
|
}
|