ddate: make multi-platform

This package should be able to compile on all plaforms.
This change allows Nix to install it on non-Linuxes.
This commit is contained in:
Patrick Lambein 2017-12-06 12:08:53 +01:00 committed by Vincent Laporte
parent 38e2228a35
commit 1e7ebac8f9

View File

@ -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;
};
}