From 1e7ebac8f946ae387e8fd7891a8bfaa106a84f7f Mon Sep 17 00:00:00 2001 From: Patrick Lambein Date: Wed, 6 Dec 2017 12:08:53 +0100 Subject: [PATCH] ddate: make multi-platform This package should be able to compile on all plaforms. This change allows Nix to install it on non-Linuxes. --- pkgs/tools/misc/ddate/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/ddate/default.nix b/pkgs/tools/misc/ddate/default.nix index 6dedb0b36a5b..c602a4c9235e 100644 --- a/pkgs/tools/misc/ddate/default.nix +++ b/pkgs/tools/misc/ddate/default.nix @@ -15,6 +15,6 @@ stdenv.mkDerivation { description = "Discordian version of the date program"; license = stdenv.lib.licenses.publicDomain; maintainers = with stdenv.lib.maintainers; [kovirobi]; - platforms = with stdenv.lib.platforms; linux; + platforms = stdenv.lib.platforms.all; }; }