mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
29 lines
880 B
Nix
29 lines
880 B
Nix
{ lib, stdenv, fetchurl ,pkg-config, libatomic_ops , boehmgc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "chase";
|
|
version = "0.5.2";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libatomic_ops boehmgc ] ;
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/c/chase/chase_${version}.orig.tar.gz";
|
|
sha256 = "68d95c2d4dc45553b75790fcea4413b7204a2618dff148116ca9bdb0310d737f";
|
|
};
|
|
|
|
doCheck = true;
|
|
makeFlags = [ "-e" "LIBS=-lgc" ];
|
|
|
|
meta = with lib ; {
|
|
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;
|
|
mainProgram = "chase";
|
|
};
|
|
}
|