about summary refs log tree commit diff
path: root/pkgs/shells/rc-9front/default.nix
blob: e68674dfb3d01730ef726384d857c6b968fc614a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, stdenv
, fetchgit
, byacc
, installShellFiles
}:

stdenv.mkDerivation {
  pname = "rc-9front";
  version = "unstable-2022-11-01";

  src = fetchgit {
    url = "git://shithub.us/cinap_lenrek/rc";
    rev = "69041639483e16392e3013491fcb382efd2b9374";
    hash = "sha256-xc+EfC4bc9ZA97jCQ6CGCzeLGf+Hx3/syl090/x4ew4=";
  };

  strictDeps = true;
  nativeBuildInputs = [ byacc installShellFiles ];
  enableParallelBuilding = true;
  patches = [ ./path.patch ];

  buildPhase = ''
    make PREFIX=$out
  '';

  installPhase = ''
    install -Dm755 -t $out/bin/ rc
    installManPage rc.1
    mkdir -p $out/lib
    install -m644 rcmain.unix $out/lib/rcmain
  '';

  passthru.shellPath = "/bin/rc";

  meta = with lib; {
    description = "The 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;
  };
}