diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-10-21 18:05:31 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-10-21 18:05:31 +0200 |
commit | 629b9b0049363e091b76b7f60a8357d9f94733cc (patch) | |
tree | 995d112bd33de6cbf53cadc798ee291b1b1f74a9 /src/nix | |
parent | e68736936a11c76725915e628b8d41d9351bbcf2 (diff) |
Mark content-addressable paths with references as experimental
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/hash.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nix/hash.cc b/src/nix/hash.cc index 53a9fd204..d7451376c 100644 --- a/src/nix/hash.cc +++ b/src/nix/hash.cc @@ -26,11 +26,13 @@ struct CmdHash : Command mkFlag() .longName("type") .mkHashTypeFlag(&ht); + #if 0 mkFlag() .longName("modulo") .description("compute hash modulo specified string") .labels({"modulus"}) .dest(&modulus); + #endif expectArgs("paths", &paths); } |