chase: init at 0.5.2
This commit is contained in:
parent
10c526d487
commit
e0878ce316
@ -286,6 +286,7 @@
|
|||||||
mboes = "Mathieu Boespflug <mboes@tweag.net>";
|
mboes = "Mathieu Boespflug <mboes@tweag.net>";
|
||||||
mcmtroffaes = "Matthias C. M. Troffaes <matthias.troffaes@gmail.com>";
|
mcmtroffaes = "Matthias C. M. Troffaes <matthias.troffaes@gmail.com>";
|
||||||
mdaiter = "Matthew S. Daiter <mdaiter8121@gmail.com>";
|
mdaiter = "Matthew S. Daiter <mdaiter8121@gmail.com>";
|
||||||
|
mdipietro = "Maurizio Di Pietro <dc1mdp@gmail.com>";
|
||||||
meditans = "Carlo Nucera <meditans@gmail.com>";
|
meditans = "Carlo Nucera <meditans@gmail.com>";
|
||||||
meisternu = "Matt Miemiec <meister@krutt.org>";
|
meisternu = "Matt Miemiec <meister@krutt.org>";
|
||||||
mguentner = "Maximilian Güntner <code@klandest.in>";
|
mguentner = "Maximilian Güntner <code@klandest.in>";
|
||||||
|
26
pkgs/tools/system/chase/default.nix
Normal file
26
pkgs/tools/system/chase/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -4378,6 +4378,8 @@ in
|
|||||||
|
|
||||||
which = callPackage ../tools/system/which { };
|
which = callPackage ../tools/system/which { };
|
||||||
|
|
||||||
|
chase = callPackage ../tools/system/chase { };
|
||||||
|
|
||||||
wicd = callPackage ../tools/networking/wicd { };
|
wicd = callPackage ../tools/networking/wicd { };
|
||||||
|
|
||||||
wipe = callPackage ../tools/security/wipe { };
|
wipe = callPackage ../tools/security/wipe { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user