1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/terminal-progress-bar/default.nix

20 lines
589 B
Nix
Raw Normal View History

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