chase: init at 0.5.2

This commit is contained in:
Maurizio Di Pietro 2017-01-02 17:22:01 +01:00 committed by Graham Christensen
parent 10c526d487
commit e0878ce316
No known key found for this signature in database
GPG Key ID: 06121D366FE9435C
3 changed files with 29 additions and 0 deletions

View File

@ -286,6 +286,7 @@
mboes = "Mathieu Boespflug <mboes@tweag.net>";
mcmtroffaes = "Matthias C. M. Troffaes <matthias.troffaes@gmail.com>";
mdaiter = "Matthew S. Daiter <mdaiter8121@gmail.com>";
mdipietro = "Maurizio Di Pietro <dc1mdp@gmail.com>";
meditans = "Carlo Nucera <meditans@gmail.com>";
meisternu = "Matt Miemiec <meister@krutt.org>";
mguentner = "Maximilian Güntner <code@klandest.in>";

View File

@ -0,0 +1,26 @@
{ stdenv, fetchurl ,pkgconfig, libatomic_ops , boehmgc }:
stdenv.mkDerivation rec {
name = "chase-0.5.2";
buildInputs = [ pkgconfig libatomic_ops boehmgc ] ;
src = fetchurl {
url = "mirror://debian/pool/main/c/chase/${name}.orig.tar.gz";
sha256 = "68d95c2d4dc45553b75790fcea4413b7204a2618dff148116ca9bdb0310d737f";
};
doCheck = true;
makeFlags = [ "-e" ];
makeFlagsArray="LIBS=-lgc";
meta = {
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 = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.mdipietro ];
platforms = stdenv.lib.platforms.all;
};
}

View File

@ -4378,6 +4378,8 @@ in
which = callPackage ../tools/system/which { };
chase = callPackage ../tools/system/chase { };
wicd = callPackage ../tools/networking/wicd { };
wipe = callPackage ../tools/security/wipe { };