summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HsSyck/default.nix
blob: 56e999d7b83eb75ca4baf69150d1cb521468419c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, syb, utf8String }:

cabal.mkDerivation (self: {
  pname = "HsSyck";
  version = "0.50";
  sha256 = "0ap675i2fngvd1nw1dk8p2fz4nbd2aq5ci8dsvpcjbp28y9j2blm";
  buildDepends = [ syb utf8String ];
  meta = {
    description = "Fast, lightweight YAML loader and dumper";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})