lol

chase: init at 0.5.2

authored by

Maurizio Di Pietro and committed by
Graham Christensen
e0878ce3 10c526d4

+29
+1
lib/maintainers.nix
··· 286 286 mboes = "Mathieu Boespflug <mboes@tweag.net>"; 287 287 mcmtroffaes = "Matthias C. M. Troffaes <matthias.troffaes@gmail.com>"; 288 288 mdaiter = "Matthew S. Daiter <mdaiter8121@gmail.com>"; 289 + mdipietro = "Maurizio Di Pietro <dc1mdp@gmail.com>"; 289 290 meditans = "Carlo Nucera <meditans@gmail.com>"; 290 291 meisternu = "Matt Miemiec <meister@krutt.org>"; 291 292 mguentner = "Maximilian Güntner <code@klandest.in>";
+26
pkgs/tools/system/chase/default.nix
··· 1 + { stdenv, fetchurl ,pkgconfig, libatomic_ops , boehmgc }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "chase-0.5.2"; 5 + 6 + buildInputs = [ pkgconfig libatomic_ops boehmgc ] ; 7 + src = fetchurl { 8 + url = "mirror://debian/pool/main/c/chase/${name}.orig.tar.gz"; 9 + sha256 = "68d95c2d4dc45553b75790fcea4413b7204a2618dff148116ca9bdb0310d737f"; 10 + }; 11 + 12 + doCheck = true; 13 + makeFlags = [ "-e" ]; 14 + makeFlagsArray="LIBS=-lgc"; 15 + 16 + meta = { 17 + description = "Follow a symlink and print out its target file"; 18 + longDescription = '' 19 + A commandline program that chases symbolic filesystems links to the original file 20 + ''; 21 + homepage = "https://qa.debian.org/developer.php?login=rotty%40debian.org"; 22 + license = stdenv.lib.licenses.gpl2Plus; 23 + maintainers = [ stdenv.lib.maintainers.mdipietro ]; 24 + platforms = stdenv.lib.platforms.all; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 4378 4378 4379 4379 which = callPackage ../tools/system/which { }; 4380 4380 4381 + chase = callPackage ../tools/system/chase { }; 4382 + 4381 4383 wicd = callPackage ../tools/networking/wicd { }; 4382 4384 4383 4385 wipe = callPackage ../tools/security/wipe { };