Commit 1e7ebac8 authored by Patrick Lambein's avatar Patrick Lambein Committed by Vincent Laporte
Browse files

ddate: make multi-platform

This package should be able to compile on all plaforms.
This change allows Nix to install it on non-Linuxes.
parent 38e2228a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  };
}