nixpkgs/pkgs/development/libraries/haskell/terminal-progress-bar/default.nix
2013-05-18 13:35:13 +02:00

20 lines
589 B
Nix

{ 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;
};
})