summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/binary-shared/default.nix
blob: 63ba8acddf6f3292ac5f9b83813e0dadb4149150 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, binary, mtl }:

cabal.mkDerivation (self: {
  pname = "binary-shared";
  version = "0.8.1";
  sha256 = "0niq6hgsawsdg3kkjgkwyrgy8w7pfkqfph5d1x5bzcjrcl982jrg";
  buildDepends = [ binary mtl ];
  meta = {
    homepage = "http://www.leksah.org";
    description = "Sharing for the binary package";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})