mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 23:24:35 +00:00
14 lines
357 B
Nix
14 lines
357 B
Nix
|
{ cabal, bindingsDSL }:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "bindings-posix";
|
||
|
version = "1.2.3";
|
||
|
sha256 = "0nj18lfpn8hmlaa7cmvdkjnk8fi2f6ysjbigkx7zbrpqnvbi63ba";
|
||
|
buildDepends = [ bindingsDSL ];
|
||
|
meta = {
|
||
|
description = "Low level bindings to posix";
|
||
|
license = self.stdenv.lib.licenses.bsd3;
|
||
|
platforms = self.ghc.meta.platforms;
|
||
|
};
|
||
|
})
|