Update pkgs/applications/version-management/rcshist/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Dmitry Bogatov 2 years ago committed by Yt
parent 99bfa8b949
commit 3a71e04f36
  1. 36
      pkgs/applications/version-management/rcshist/default.nix

@ -2,21 +2,21 @@
, stdenv , stdenv
, fetchurl , fetchurl
}: }:
stdenv.mkDerivation
{ stdenv.mkDerivation {
pname = "rcshist"; pname = "rcshist";
version = "1.04"; version = "1.04";
src =
fetchurl src = fetchurl {
{ url = "https://invisible-island.net/datafiles/release/rcshist.tar.gz";
url = "https://invisible-island.net/datafiles/release/rcshist.tar.gz"; sha256 = "01ab3xwgm934lxr8bm758am3vxwx4hxx7cc9prbgqj5nh30vdg1n";
sha256 = "01ab3xwgm934lxr8bm758am3vxwx4hxx7cc9prbgqj5nh30vdg1n"; };
};
meta = { meta = {
description = "Utitity to display complete revision history of a set of RCS files"; description = "Utitity to display complete revision history of a set of RCS files";
homepage = "https://invisible-island.net/rcshist/rcshist.html"; homepage = "https://invisible-island.net/rcshist/rcshist.html";
license = lib.licenses.bsd2; license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.kaction ]; maintainers = [ lib.maintainers.kaction ];
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
}; };
} }

Loading…
Cancel
Save