about summary refs log tree commit diff
path: root/pkgs/development/scheme-modules/scheme-bytestructures
diff options
context:
space:
mode:
authorGabriel Arazas <foo.dogsquared@gmail.com>2022-10-04 19:52:01 +0800
committerGabriel Arazas <foo.dogsquared@gmail.com>2022-10-04 19:52:21 +0800
commit10c02745ab7f9d324107ecfd557905677fd04322 (patch)
treec22cd14bc3630d9df8b616482d6ffe834d8a247d /pkgs/development/scheme-modules/scheme-bytestructures
parent826fd7598402596f27548877f5689d2e83a5c783 (diff)
downloadnixlib-10c02745ab7f9d324107ecfd557905677fd04322.tar
nixlib-10c02745ab7f9d324107ecfd557905677fd04322.tar.gz
nixlib-10c02745ab7f9d324107ecfd557905677fd04322.tar.bz2
nixlib-10c02745ab7f9d324107ecfd557905677fd04322.tar.lz
nixlib-10c02745ab7f9d324107ecfd557905677fd04322.tar.xz
nixlib-10c02745ab7f9d324107ecfd557905677fd04322.tar.zst
nixlib-10c02745ab7f9d324107ecfd557905677fd04322.zip
scheme-bytestructures: add make flags and tests
Diffstat (limited to 'pkgs/development/scheme-modules/scheme-bytestructures')
-rw-r--r--pkgs/development/scheme-modules/scheme-bytestructures/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/scheme-modules/scheme-bytestructures/default.nix b/pkgs/development/scheme-modules/scheme-bytestructures/default.nix
index 602b0d86f44b..1cbbdf0bf29d 100644
--- a/pkgs/development/scheme-modules/scheme-bytestructures/default.nix
+++ b/pkgs/development/scheme-modules/scheme-bytestructures/default.nix
@@ -17,11 +17,6 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-Wvs288K8BVjUuWvvzpDGBwOxL7mAXjVtgIwJAsQd0L4=";
   };
 
-  postConfigure = ''
-    sed -i '/moddir\s*=/s%=.*%=''${out}/share/guile/site%' Makefile;
-    sed -i '/godir\s*=/s%=.*%=''${out}/share/guile/ccache%' Makefile;
-  '';
-
   nativeBuildInputs = [
     autoreconfHook pkg-config
   ];
@@ -29,6 +24,9 @@ stdenv.mkDerivation rec {
     guile
   ];
 
+  doCheck = true;
+  makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
+
   meta = with lib; {
     description = "Structured access to bytevector contents";
     homepage = "https://github.com/TaylanUB/scheme-bytestructures";