summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/terminal-progress-bar/default.nix
blob: d5e16e43d3ae359f20f8aaedda6df83c26bf1a59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, baseUnicodeSymbols, HUnit, testFramework
, testFrameworkHunit
}:

cabal.mkDerivation (self: {
  pname = "terminal-progress-bar";
  version = "0.0.1.3";
  sha256 = "04glnz72ivnaqfhyxb5sc175yxiq7lf7xi1jhbk9gi95md00f1js";
  buildDepends = [ baseUnicodeSymbols ];
  testDepends = [
    baseUnicodeSymbols HUnit testFramework testFrameworkHunit
  ];
  meta = {
    homepage = "https://github.com/roelvandijk/terminal-progress-bar";
    description = "A simple progress bar in the terminal";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})