summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2019-03-11 22:53:07 -0400
committerGitHub <noreply@github.com>2019-03-11 22:53:07 -0400
commitc3cb5933f8d4467f2d4d0f4334f42e13a53a04c6 (patch)
tree371b7c1bf48cbbec5019c3347f1138105a223876 /pkgs/tools
parent816c9b654717de83d46dcc96d208d77f2da5f522 (diff)
parent95aef953225b0a81e00d0a30dab7bac45cb2cb22 (diff)
downloadnixpkgs-c3cb5933f8d4467f2d4d0f4334f42e13a53a04c6.tar
nixpkgs-c3cb5933f8d4467f2d4d0f4334f42e13a53a04c6.tar.gz
nixpkgs-c3cb5933f8d4467f2d4d0f4334f42e13a53a04c6.tar.bz2
nixpkgs-c3cb5933f8d4467f2d4d0f4334f42e13a53a04c6.tar.lz
nixpkgs-c3cb5933f8d4467f2d4d0f4334f42e13a53a04c6.tar.xz
nixpkgs-c3cb5933f8d4467f2d4d0f4334f42e13a53a04c6.tar.zst
nixpkgs-c3cb5933f8d4467f2d4d0f4334f42e13a53a04c6.zip
Merge pull request #57444 from abathur/pdfgrep-platform-unix
pdfgrep: relax platform from linux to unix
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/typesetting/pdfgrep/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/typesetting/pdfgrep/default.nix b/pkgs/tools/typesetting/pdfgrep/default.nix
index 5f35beac2d0..38382689edc 100644
--- a/pkgs/tools/typesetting/pdfgrep/default.nix
+++ b/pkgs/tools/typesetting/pdfgrep/default.nix
@@ -23,6 +23,6 @@ stdenv.mkDerivation rec {
     homepage = https://pdfgrep.org/;
     license = stdenv.lib.licenses.gpl2Plus;
     maintainers = with stdenv.lib.maintainers; [ qknight fpletz ];
-    platforms = with stdenv.lib.platforms; linux;
+    platforms = with stdenv.lib.platforms; unix;
   };
 }