summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorWill Dietz <github@wdtz.org>2018-04-30 19:08:21 -0500
committerGitHub <noreply@github.com>2018-04-30 19:08:21 -0500
commitdc488634d96cca77d243ef6565f4cc03e2df9503 (patch)
treeed2e8a3695d13161d104a04301dfc6bd27f6a770 /pkgs/tools/text
parentebb7c53751e420f977c8782aa0a5eccfbe666414 (diff)
parent9bde5abedd34add6fdc579635cd4d522cad1a299 (diff)
downloadnixpkgs-dc488634d96cca77d243ef6565f4cc03e2df9503.tar
nixpkgs-dc488634d96cca77d243ef6565f4cc03e2df9503.tar.gz
nixpkgs-dc488634d96cca77d243ef6565f4cc03e2df9503.tar.bz2
nixpkgs-dc488634d96cca77d243ef6565f4cc03e2df9503.tar.lz
nixpkgs-dc488634d96cca77d243ef6565f4cc03e2df9503.tar.xz
nixpkgs-dc488634d96cca77d243ef6565f4cc03e2df9503.tar.zst
nixpkgs-dc488634d96cca77d243ef6565f4cc03e2df9503.zip
Merge pull request #39773 from dtzWill/feature/platforms-musl-too
treewide: platforms.gnu -> gnu ++ linux, allow using musl
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/namazu/default.nix2
-rw-r--r--pkgs/tools/text/numdiff/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/namazu/default.nix b/pkgs/tools/text/namazu/default.nix
index 21548de5efb..67a26cb41aa 100644
--- a/pkgs/tools/text/namazu/default.nix
+++ b/pkgs/tools/text/namazu/default.nix
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
     license = stdenv.lib.licenses.gpl2Plus;
     homepage = http://namazu.org/;
 
-    platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
+    platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;  # arbitrary choice
     maintainers = [ ];
     broken = true; # File-MMagic is not compatible with our Perl version
   };
diff --git a/pkgs/tools/text/numdiff/default.nix b/pkgs/tools/text/numdiff/default.nix
index 96c91def9ac..4741fecb90c 100644
--- a/pkgs/tools/text/numdiff/default.nix
+++ b/pkgs/tools/text/numdiff/default.nix
@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
     homepage = http://www.nongnu.org/numdiff/;
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ ndowens ];
-    platforms = platforms.gnu;
+    platforms = platforms.gnu ++ platforms.linux;
   };
 }