summary refs log tree commit diff
path: root/pkgs/tools/typesetting/pdfgrep
diff options
context:
space:
mode:
authorTravis A. Everett <travis.a.everett@gmail.com>2019-03-11 15:23:15 -0500
committerGitHub <noreply@github.com>2019-03-11 15:23:15 -0500
commit95aef953225b0a81e00d0a30dab7bac45cb2cb22 (patch)
tree9422d58f3c296a26cbf53cfaef1189aa132c9afe /pkgs/tools/typesetting/pdfgrep
parent12408341763b8f2f0f0a88001d9650313f6371d5 (diff)
downloadnixpkgs-95aef953225b0a81e00d0a30dab7bac45cb2cb22.tar
nixpkgs-95aef953225b0a81e00d0a30dab7bac45cb2cb22.tar.gz
nixpkgs-95aef953225b0a81e00d0a30dab7bac45cb2cb22.tar.bz2
nixpkgs-95aef953225b0a81e00d0a30dab7bac45cb2cb22.tar.lz
nixpkgs-95aef953225b0a81e00d0a30dab7bac45cb2cb22.tar.xz
nixpkgs-95aef953225b0a81e00d0a30dab7bac45cb2cb22.tar.zst
nixpkgs-95aef953225b0a81e00d0a30dab7bac45cb2cb22.zip
pdfgrep: relax platform from linux to unix
Diffstat (limited to 'pkgs/tools/typesetting/pdfgrep')
-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;
   };
 }