mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
16 lines
472 B
Nix
16 lines
472 B
Nix
{ cabal, blazeBuilder, filepath, hspec, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "fast-logger";
|
|
version = "2.1.4";
|
|
sha256 = "1fb75wx1v9h7690x43kd85lq1h9zi8nq438pqclzzrcfidsnm6z5";
|
|
buildDepends = [ blazeBuilder filepath text ];
|
|
testDepends = [ hspec ];
|
|
meta = {
|
|
description = "A fast logging system";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|