nixpkgs-suyu/pkgs/applications/version-management/rcshist/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
748 B
Nix
Raw Normal View History

2022-02-08 02:37:19 +01:00
{ lib
, stdenv
, fetchurl
, musl-fts
2022-02-08 02:37:19 +01:00
}:
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;
};
}