Merge pull request #77315 from matthiasbeyer/update-taskell

taskell: 1.7.3 -> 1.9.3
This commit is contained in:
Oleksii Filonenko 2020-07-22 12:29:28 +03:00 committed by GitHub
commit 3ed1f3ba05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,8 @@
{ lib, haskellPackages, fetchFromGitHub }:
let
version = "1.7.3";
sha256 = "1439fh79ilc6jvz894cfzhk7gy5r2sv4v79bvqmmqbzbqk9qsbvx";
version = "1.9.3";
sha256 = "1xh18884xkhcln4blglzi0faag4ydhxxsk9hj6llb81kcsxlsi89";
in (haskellPackages.mkDerivation {
pname = "taskell";
@ -46,6 +46,7 @@ in (haskellPackages.mkDerivation {
# text
time
vty
tz
];
executableHaskellDepends = [];
@ -61,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" ];
})