mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
parent
fd29514404
commit
5f0e6404dc
24
pkgs/servers/sql/monetdb/default.nix
Normal file
24
pkgs/servers/sql/monetdb/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, pkgconfig, bison, openssl }:
|
||||
|
||||
let
|
||||
version = "11.29.3";
|
||||
in stdenv.mkDerivation rec {
|
||||
|
||||
name = "monetdb-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2";
|
||||
sha256 = "18l4jkkryki5az5n7gnalfdxz6ibnkg3q2z4cwh1010b313wqi8s";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ bison openssl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An open source database system";
|
||||
homepage = https://www.monetdb.org/;
|
||||
license = licenses.mpl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.StillerHarpo ];
|
||||
};
|
||||
}
|
@ -1322,6 +1322,8 @@ with pkgs;
|
||||
|
||||
metabase = callPackage ../servers/metabase { };
|
||||
|
||||
monetdb = callPackage ../servers/sql/monetdb { };
|
||||
|
||||
mp3blaster = callPackage ../applications/audio/mp3blaster { };
|
||||
|
||||
mp3fs = callPackage ../tools/filesystems/mp3fs { };
|
||||
|
Loading…
Reference in New Issue
Block a user