depot/pkgs/tools/system/symlinks/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

30 lines
743 B
Nix

{ fetchFromGitHub, lib, stdenv }:
stdenv.mkDerivation rec {
pname = "symlinks";
version = "1.4.3";
src = fetchFromGitHub {
owner = "brandt";
repo = "symlinks";
rev = "v${version}";
sha256 = "EMWd7T/k4v1uvXe2QxhyPoQKUpKIUANE9AOwX461FgU=";
};
buildFlags = [ "CC=${stdenv.cc}/bin/cc" ];
installPhase = ''
mkdir -p $out/bin $out/share/man/man8
cp symlinks $out/bin
cp symlinks.8 $out/share/man/man8
'';
meta = with lib; {
description = "Find and remedy problematic symbolic links on a system";
homepage = "https://github.com/brandt/symlinks";
license = licenses.mit;
maintainers = with maintainers; [ ckauhaus ];
platforms = platforms.unix;
mainProgram = "symlinks";
};
}