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

cabal.mkDerivation (self: {
  pname = "bits-atomic";
  version = "0.1.3";
  sha256 = "13fbakkwcdk63dm7r0mcsanm5mijp73c7x1kxpay2f03rxb39b70";
  isLibrary = true;
  isExecutable = true;
  meta = {
    description = "Atomic bit operations on memory locations for low-level synchronization";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})