about summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2019-06-11 21:58:55 +0200
committerProfpatsch <mail@profpatsch.de>2019-06-12 14:09:42 +0200
commit7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c (patch)
treed6a99418265d4c1b60d5e8bcde4782b23a79cee6 /pkgs/tools/system
parent5d238e45de842e8cc82467adb294e00e399cdbae (diff)
downloadnixlib-7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c.tar
nixlib-7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c.tar.gz
nixlib-7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c.tar.bz2
nixlib-7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c.tar.lz
nixlib-7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c.tar.xz
nixlib-7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c.tar.zst
nixlib-7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c.zip
xe: platforms.linux -> platforms.all
xe is such a trivial package, it should build on every platform that
supports a CC compiler.
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/xe/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/system/xe/default.nix b/pkgs/tools/system/xe/default.nix
index 934aa6fc2793..519cae03c5a5 100644
--- a/pkgs/tools/system/xe/default.nix
+++ b/pkgs/tools/system/xe/default.nix
@@ -3,7 +3,7 @@
 stdenv.mkDerivation rec {
   name = "xe-${version}";
   version = "0.11";
-  
+
   src = fetchFromGitHub {
     owner = "chneukirchen";
     repo = "xe";
@@ -12,12 +12,12 @@ stdenv.mkDerivation rec {
   };
 
   makeFlags = "PREFIX=$(out)";
-  
+
   meta = with lib; {
     description = "Simple xargs and apply replacement";
     homepage = https://github.com/chneukirchen/xe;
     license = licenses.publicDomain;
-    platforms = platforms.linux;
+    platforms = platforms.all;
     maintainers = with maintainers; [ cstrahan ndowens ];
   };
 }