summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-25 18:44:16 +0200
committersterni <sternenseemann@systemli.org>2021-07-04 20:20:42 +0200
commit32c42d37ab6d45388fc713fe8312a50eade3d4b3 (patch)
treef529aeb5714547541e6a935a00bedbeacf8acd7a /pkgs/development/tools/build-managers
parent30200ce8e1ec62c82730e06287de746eda54900c (diff)
downloadnixpkgs-32c42d37ab6d45388fc713fe8312a50eade3d4b3.tar
nixpkgs-32c42d37ab6d45388fc713fe8312a50eade3d4b3.tar.gz
nixpkgs-32c42d37ab6d45388fc713fe8312a50eade3d4b3.tar.bz2
nixpkgs-32c42d37ab6d45388fc713fe8312a50eade3d4b3.tar.lz
nixpkgs-32c42d37ab6d45388fc713fe8312a50eade3d4b3.tar.xz
nixpkgs-32c42d37ab6d45388fc713fe8312a50eade3d4b3.tar.zst
nixpkgs-32c42d37ab6d45388fc713fe8312a50eade3d4b3.zip
bmake: test musl build
Since we do some additional patching to make it work with musl, we
should also test that, so we can _keep_ it working.
Diffstat (limited to 'pkgs/development/tools/build-managers')
-rw-r--r--pkgs/development/tools/build-managers/bmake/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/tools/build-managers/bmake/default.nix b/pkgs/development/tools/build-managers/bmake/default.nix
index 56e62ad99a9..11bc5889702 100644
--- a/pkgs/development/tools/build-managers/bmake/default.nix
+++ b/pkgs/development/tools/build-managers/bmake/default.nix
@@ -1,5 +1,6 @@
 { lib, stdenv, fetchurl, fetchpatch
 , getopt, tzdata
+, pkgsMusl # for passthru.tests
 }:
 
 stdenv.mkDerivation rec {
@@ -79,6 +80,10 @@ stdenv.mkDerivation rec {
 
   setupHook = ./setup-hook.sh;
 
+  passthru.tests = {
+    bmakeMusl = pkgsMusl.bmake;
+  };
+
   meta = with lib; {
     description = "Portable version of NetBSD 'make'";
     homepage    = "http://www.crufty.net/help/sjg/bmake.html";