nixpkgs/pkgs/by-name/ch/chase/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
912 B
Nix
Raw Normal View History

{
lib,
stdenv,
fetchurl,
pkg-config,
libatomic_ops,
boehmgc,
}:
2017-01-02 16:22:01 +00:00
stdenv.mkDerivation rec {
pname = "chase";
version = "0.5.2";
2017-01-02 16:22:01 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libatomic_ops
boehmgc
];
2017-01-02 16:22:01 +00:00
src = fetchurl {
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"
"LIBS=-lgc"
];
2017-01-02 16:22:01 +00:00
2021-01-15 09:19:50 +00:00
meta = with 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
'';
homepage = "https://qa.debian.org/developer.php?login=rotty%40debian.org";
license = licenses.gpl2Plus;
maintainers = [ maintainers.polyrod ];
platforms = platforms.all;
2023-11-27 01:17:53 +00:00
mainProgram = "chase";
2017-01-02 16:22:01 +00:00
};
}