mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
Merge pull request #1201 from errge/master
Add direct-sqlite haskell library
This commit is contained in:
commit
a6d30242a1
15
pkgs/development/libraries/haskell/direct-sqlite/default.nix
Normal file
15
pkgs/development/libraries/haskell/direct-sqlite/default.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ cabal, base16Bytestring, HUnit, text }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "direct-sqlite";
|
||||
version = "2.3.8";
|
||||
sha256 = "0qvqacjymrm6yy093p8biq3swdinh3lx75m27iz1p3ckdkw10lva";
|
||||
buildDepends = [ text ];
|
||||
testDepends = [ base16Bytestring HUnit text ];
|
||||
meta = {
|
||||
homepage = "http://ireneknapp.com/software/";
|
||||
description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support.";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -899,6 +899,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
dimensionalTf = callPackage ../development/libraries/haskell/dimensional-tf {};
|
||||
|
||||
directSqlite = callPackage ../development/libraries/haskell/direct-sqlite {};
|
||||
|
||||
directoryTree = callPackage ../development/libraries/haskell/directory-tree {};
|
||||
|
||||
distributedStatic = callPackage ../development/libraries/haskell/distributed-static {};
|
||||
|
Loading…
Reference in New Issue
Block a user