octave.pkgs.database: init at 2.4.4

This commit is contained in:
Karl Hallsby 2021-01-06 10:48:35 -06:00 committed by Doron Behar
parent f4298212c0
commit abd0c2290a
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ buildOctavePackage
, lib
, fetchurl
, struct
, postgresql
}:
buildOctavePackage rec {
pname = "database";
version = "2.4.4";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "1c0n76adi0jw6bx62s04vjyda6kb6ca8lzz2vam43vdy10prcq9p";
};
propagatedBuildInputs = [
postgresql
];
requiredOctavePackages = [
struct
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/database/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Interface to SQL databases, currently only postgresql using libpq";
};
}

View file

@ -71,6 +71,8 @@ makeScope newScope (self:
data-smoothing = callPackage ../development/octave-modules/data-smoothing { };
database = callPackage ../development/octave-modules/database { };
general = callPackage ../development/octave-modules/general {
nettle = pkgs.nettle;
};