From 3a71e04f36c500df36a1a7374dec9cfd50c27f11 Mon Sep 17 00:00:00 2001 From: Dmitry Bogatov Date: Sun, 8 May 2022 17:20:54 -0400 Subject: [PATCH] Update pkgs/applications/version-management/rcshist/default.nix Co-authored-by: Sandro --- .../version-management/rcshist/default.nix | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/pkgs/applications/version-management/rcshist/default.nix b/pkgs/applications/version-management/rcshist/default.nix index 60e6152f721..cd176972277 100644 --- a/pkgs/applications/version-management/rcshist/default.nix +++ b/pkgs/applications/version-management/rcshist/default.nix @@ -2,21 +2,21 @@ , stdenv , fetchurl }: -stdenv.mkDerivation - { - pname = "rcshist"; - version = "1.04"; - src = - fetchurl - { - url = "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; - }; - } + +stdenv.mkDerivation { + pname = "rcshist"; + version = "1.04"; + + src = fetchurl { + url = "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; + }; +}