15 lines
467 B
Nix
15 lines
467 B
Nix
|
{ cabal, hxt, regular, text }:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "regular-xmlpickler";
|
||
|
version = "0.2";
|
||
|
sha256 = "1qjx4xsidnpr2as3m2ir97ap5vc9cw6a0z332g53ifx9gskjli9f";
|
||
|
buildDepends = [ hxt regular text ];
|
||
|
meta = {
|
||
|
homepage = "http://github.com/silkapp/regular-xmlpickler";
|
||
|
description = "Generic generation of HXT XmlPickler instances using Regular";
|
||
|
license = self.stdenv.lib.licenses.bsd3;
|
||
|
platforms = self.ghc.meta.platforms;
|
||
|
};
|
||
|
})
|