biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / system / chase / default.nix
blob40f09089fdff176903662cff72bd1f4f5a9077e7
1 { lib, stdenv, fetchurl ,pkg-config, libatomic_ops , boehmgc }:
3 stdenv.mkDerivation rec {
4   pname = "chase";
5   version = "0.5.2";
7   nativeBuildInputs = [ pkg-config ];
8   buildInputs = [ libatomic_ops boehmgc ] ;
9   src = fetchurl {
10     url = "mirror://debian/pool/main/c/chase/chase_${version}.orig.tar.gz";
11     sha256 = "68d95c2d4dc45553b75790fcea4413b7204a2618dff148116ca9bdb0310d737f";
12   };
14   doCheck = true;
15   makeFlags = [ "-e" "LIBS=-lgc" ];
17   meta = with 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     mainProgram = "chase";
27   };