mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
880c9a22b9
This version updated by J. Brandt Buckley <brandt@runlevel1.com> features macOS support and has a proper license.
28 lines
733 B
Nix
28 lines
733 B
Nix
{ fetchurl, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "symlinks-${version}";
|
|
version = "1.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/brandt/symlinks/archive/v${version}.tar.gz";
|
|
sha256 = "1cihrd3dap52z1msdhhgda7b7wy1l5ysfvyba8yxb3zjk0l5n417";
|
|
};
|
|
|
|
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 stdenv.lib; {
|
|
description = "Find and remedy problematic symbolic links on a system";
|
|
homepage = "https://github.com/brandt/symlinks";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ goibhniu ckauhaus ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|