From 7bae5c6392ba3ed8eff64203db2a9db9ceb0c64c Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 11 Jun 2019 21:58:55 +0200 Subject: [PATCH] xe: platforms.linux -> platforms.all xe is such a trivial package, it should build on every platform that supports a CC compiler. --- pkgs/tools/system/xe/default.nix | 6 +++--- 1 file 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 ]; }; }