mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFrom9Front
|
|
, unstableGitUpdater
|
|
, byacc
|
|
, installShellFiles
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rc-9front";
|
|
version = "0-unstable-2022-11-01";
|
|
|
|
src = fetchFrom9Front {
|
|
domain = "shithub.us";
|
|
owner = "cinap_lenrek";
|
|
repo = "rc";
|
|
rev = "69041639483e16392e3013491fcb382efd2b9374";
|
|
hash = "sha256-xc+EfC4bc9ZA97jCQ6CGCzeLGf+Hx3/syl090/x4ew4=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ byacc installShellFiles ];
|
|
enableParallelBuilding = true;
|
|
patches = [ ./path.patch ];
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 -t $out/bin/ rc
|
|
installManPage rc.1
|
|
mkdir -p $out/lib
|
|
install -m644 rcmain.unix $out/lib/rcmain
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
shellPath = "/bin/rc";
|
|
updateScript = unstableGitUpdater { shallowClone = false; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "9front shell";
|
|
longDescription = "unix port of 9front rc";
|
|
homepage = "http://shithub.us/cinap_lenrek/rc/HEAD/info.html";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ moody ];
|
|
mainProgram = "rc";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|