pkgs: add sqlite_orm
This commit is contained in:
parent
6a47703c08
commit
ef882a5267
|
@ -28,6 +28,8 @@ pkgs.lib.makeScope pkgs.newScope (pkgs: {
|
|||
|
||||
rbw-pass = pkgs.callPackage ./rbw-pass { };
|
||||
|
||||
sqlite_orm = pkgs.callPackage ./sqlite_orm { };
|
||||
|
||||
unbound-zones-adblock = pkgs.callPackage ./unbound-zones-adblock { };
|
||||
|
||||
zsh-done = pkgs.callPackage ./zsh-done { };
|
||||
|
|
32
pkgs/sqlite_orm/default.nix
Normal file
32
pkgs/sqlite_orm/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib
|
||||
, cmake
|
||||
, fetchFromGitHub
|
||||
, sqlite
|
||||
, stdenv
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "sqlite_orm";
|
||||
version = "1.8.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fnc12";
|
||||
repo = "sqlite_orm";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-KqphGFcnR1Y11KqL7sxODSv7lEvcURdF6kLd3cg84kc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
sqlite
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Light header only SQLite ORM";
|
||||
homepage = "https://sqliteorm.com/";
|
||||
license = licenses.agpl3Only; # MIT license is commercial
|
||||
maintainers = with maintainers; [ ambroisie ];
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue