about summary refs log tree commit diff
path: root/third_party/overlays/haskell/extra-pkgs/pa-run-command-0.1.0.0.nix
blob: b12eb5efbf5f2685d8a2d3bc2de4e4f7839e3a27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ mkDerivation
, base
, bytestring
, lib
, monad-logger
, pa-prelude
, text
, typed-process
}:
mkDerivation {
  pname = "pa-run-command";
  version = "0.1.0.0";
  sha256 = "37837e0cddedc9b615063f0357115739c53b5dcb8af82ce86a95a3a5c88c29a3";
  libraryHaskellDepends = [
    base
    bytestring
    monad-logger
    pa-prelude
    text
    typed-process
  ];
  homepage = "https://github.com/possehl-analytics/pa-hackage";
  description = "Helper functions for spawning subprocesses";
  license = lib.licenses.bsd3;
}