summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiols <niols@niols.fr>2023-07-07 17:22:48 +0000
committerNiols <niols@niols.fr>2023-10-04 12:54:22 +0000
commitb992fc146317cca1dda5612ddbc51845fa6e2b16 (patch)
tree6d1618a3416f4771f33dd8fc012856da2ea8d1fb
parentheadache: 1.06 -> 1.07 (diff)
downloadnixpkgs-b992fc146317cca1dda5612ddbc51845fa6e2b16.tar.gz
headache: add passthru.updateScript
-rw-r--r--pkgs/development/tools/headache/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/tools/headache/default.nix b/pkgs/development/tools/headache/default.nix
index cc5b15ffdbc8..7ed249290136 100644
--- a/pkgs/development/tools/headache/default.nix
+++ b/pkgs/development/tools/headache/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, ocamlPackages }:
+{ lib, fetchFromGitHub, nix-update-script, ocamlPackages }:
with ocamlPackages;
@@ -17,6 +17,8 @@ buildDunePackage rec {
camomile
];
+ passthru.updateScript = nix-update-script { };
+
meta = with lib; {
homepage = "https://github.com/frama-c/${pname}";
description = "Lightweight tool for managing headers in source code files";