summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/byteorder/default.nix
blob: 96ac64628ec213107dcaddb6ea8fbd701b3b8992 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, Cabal }:

cabal.mkDerivation (self: {
  pname = "byteorder";
  version = "1.0.3";
  sha256 = "056jb47r4pkimi6z2z49prnsmjnhnijk57zm0divl1k55igi5way";
  buildDepends = [ Cabal ];
  meta = {
    homepage = "http://community.haskell.org/~aslatter/code/byteorder";
    description = "Exposes the native endianness or byte ordering of the system";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})