mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 16:11:58 +00:00
14 lines
389 B
Nix
14 lines
389 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "bindings-DSL";
|
|
version = "1.0.20";
|
|
sha256 = "11qc02fkmrpy6c1a85lwlz06m4fpvfpbpbxgv5rkyb1amg2cnklq";
|
|
meta = {
|
|
homepage = "http://bitbucket.org/mauricio/bindings-dsl";
|
|
description = "FFI domain specific language, on top of hsc2hs";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|