From 58e83da9e329bb5866ae0fc092bfa5e412d97965 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 24 Feb 2020 09:36:34 +0100 Subject: [PATCH] taskell: 1.9.2 -> 1.9.3 Signed-off-by: Matthias Beyer --- pkgs/applications/misc/taskell/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/taskell/default.nix b/pkgs/applications/misc/taskell/default.nix index f7a24e5b958..e8f1c711d27 100644 --- a/pkgs/applications/misc/taskell/default.nix +++ b/pkgs/applications/misc/taskell/default.nix @@ -1,8 +1,8 @@ { lib, haskellPackages, fetchFromGitHub }: let - version = "1.9.2"; - sha256 = "1al385dn3pqw9dnby65abdj18qg46dzk3bhxnhnc0gj1ks1rygmx"; + version = "1.9.3"; + sha256 = "1xh18884xkhcln4blglzi0faag4ydhxxsk9hj6llb81kcsxlsi89"; in (haskellPackages.mkDerivation { pname = "taskell"; @@ -62,5 +62,5 @@ in (haskellPackages.mkDerivation { homepage = "https://taskell.app"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ matthiasbeyer ]; - platforms = with lib.platforms; unix ++ darwin; + platforms = [ "x86_64-linux" ]; })