about summary refs log tree commit diff
path: root/pkgs/applications/version-management/rcshist/default.nix
blob: f11c515b5399e381a1363fdb95a69ee2bad320b8 (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
{ lib
, stdenv
, fetchurl
, musl-fts
}:

stdenv.mkDerivation {
  pname = "rcshist";
  version = "1.04";

  configureFlags = lib.optional stdenv.hostPlatform.isMusl "LIBS=-lfts";

  buildInputs = lib.optional stdenv.hostPlatform.isMusl musl-fts;

  src = fetchurl {
    url = "https://web.archive.org/web/20220508220019/https://invisible-island.net/datafiles/release/rcshist.tar.gz";
    sha256 = "01ab3xwgm934lxr8bm758am3vxwx4hxx7cc9prbgqj5nh30vdg1n";
  };

  meta = {
    description = "Utitity to display complete revision history of a set of RCS files";
    homepage = "https://invisible-island.net/rcshist/rcshist.html";
    license = lib.licenses.bsd2;
    maintainers = [ lib.maintainers.kaction ];
    platforms = lib.platforms.unix;
    mainProgram = "rcshist";
  };
}