{ haskell, lib, haskellPackages, fetchFromGitHub }: let version = "1.3.2"; sha256 = "0cyysvkl8m1ldlprmw9mpvch3r244nl25yv74dwcykga3g5mw4aa"; in (haskellPackages.mkDerivation { pname = "taskell"; inherit version; src = fetchFromGitHub { owner = "smallhadroncollider"; repo = "taskell"; rev = version; inherit sha256; }; postPatch = ''${haskellPackages.hpack}/bin/hpack''; # basically justStaticExecutables; TODO: use justStaticExecutables enableSharedExecutables = false; enableLibraryProfiling = false; isExecutable = true; doHaddock = false; postFixup = "rm -rf $out/lib $out/nix-support $out/share/doc"; # copied from packages.yaml libraryHaskellDepends = with haskellPackages; [ classy-prelude # base <=5 aeson brick # bytestring config-ini # containers # directory file-embed http-conduit http-client http-types lens # mtl # template-haskell # text time vty ]; executableHaskellDepends = []; testHaskellDepends = with haskellPackages; [ tasty tasty-discover tasty-expected-failure tasty-hunit ]; license = lib.licenses.bsd3; })