summary refs log tree commit diff
path: root/pkgs/development/nim-packages/db_connector/default.nix
blob: 287d6fd0552c57923ea0711d0a7e7c8a81a39917 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildNimPackage, fetchFromGitHub }:

buildNimPackage (final: prev: {
  pname = "db_connector";
  version = "unstable-2023-02-23";
  src = fetchFromGitHub {
    owner = "nim-lang";
    repo = "db_connector";
    rev = "e65693709dd042bc723c8f1d46cc528701f1c479";
    hash = "sha256-g5X51VbES8OxR5m9WexK70Yo6S2PnroKLabj1cUu1P0=";
  };
  doCheck = false; # tests only worked in the Nim sources
  meta = final.src.meta // {
    description = "Unified db connector in Nim";
    homepage = "https://github.com/nim-lang/db_connector";
    license = [ lib.licenses.mit ];
    maintainers = with lib.maintainers; [ ehmry ];
  };
})