mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
16 lines
472 B
Nix
16 lines
472 B
Nix
{ cabal, blazeBuilder, filepath, hspec, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "fast-logger";
|
|
version = "2.0.3";
|
|
sha256 = "13qjdkfps673wy8mnaqkni43kbxxhimzbshv1ifhwf4s8wgc2mjw";
|
|
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 ];
|
|
};
|
|
})
|