diff options
author | Arun Isaac | 2021-02-26 17:03:33 +0530 |
---|---|---|
committer | Arun Isaac | 2021-02-26 17:03:33 +0530 |
commit | 669e1c1912430560e6f5fffc92d0e2710d015423 (patch) | |
tree | 33d8ebe19ca31389dd35e8b4ebf79ca81546416a | |
parent | 1599687dd61f51fde6531ee81c795cd4119253a0 (diff) | |
download | nsmc-669e1c1912430560e6f5fffc92d0e2710d015423.tar.gz nsmc-669e1c1912430560e6f5fffc92d0e2710d015423.tar.lz nsmc-669e1c1912430560e6f5fffc92d0e2710d015423.zip |
Add indent to build dependencies.
* guix.scm (extent-sampling): Add indent to native-inputs.
-rw-r--r-- | guix.scm | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -12,6 +12,7 @@ (guix packages) (guix utils) (gnu packages bash) + (gnu packages code) (gnu packages guile) (gnu packages guile-xyz) (gnu packages maths) @@ -138,7 +139,10 @@ `(("gsl" ,gsl) ("guile" ,guile-3.0))) (native-inputs - `(("pkg-config" ,pkg-config) + `(("indent" ,indent) ; indent is really optional, but it indents + ; the generated C code making it + ; readable. That can be useful. + ("pkg-config" ,pkg-config) ("sph-sc" ,sph-sc))) (synopsis "Extent sampling library") (description "Extent sampling library") |