about summary refs log tree commit diff
path: root/pkgs/data/documentation
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-06-24 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-06-24 04:20:00 +0000
commit4fce246b9f16896987f096f2d78cc649cc042eab (patch)
treef4996c98b9994c4b68e24c0a198300e91bb8dcf2 /pkgs/data/documentation
parent2873fcab493bb0b4ab47b7dba5fd2b4f24827f31 (diff)
scheme-manpages: add updateScript
Diffstat (limited to 'pkgs/data/documentation')
-rw-r--r--pkgs/data/documentation/scheme-manpages/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/data/documentation/scheme-manpages/default.nix b/pkgs/data/documentation/scheme-manpages/default.nix
index 8ff9344b3f522..7896540bb6bd0 100644
--- a/pkgs/data/documentation/scheme-manpages/default.nix
+++ b/pkgs/data/documentation/scheme-manpages/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenvNoCC, fetchFromGitHub }:
+{ lib, stdenvNoCC, fetchFromGitHub, unstableGitUpdater }:
 
 stdenvNoCC.mkDerivation rec {
   pname = "scheme-manpages";
@@ -18,6 +18,8 @@ stdenvNoCC.mkDerivation rec {
     cp -r man3/ man7/ $out/share/man/
   '';
 
+  passthru.updateScript = unstableGitUpdater { };
+
   meta = with lib; {
     description = "Unix manual pages for R6RS and R7RS";
     homepage = "https://github.com/schemedoc/manpages";