Fairly complete set of packages for Pure
This commit is contained in:
25
pkgs/development/pure-modules/sql3/default.nix
Normal file
25
pkgs/development/pure-modules/sql3/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, pkgconfig, pure, sqlite }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
baseName = "sql3";
|
||||
version = "0.5";
|
||||
name = "pure-${baseName}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
|
||||
sha256 = "b9f79dd443c8ffc5cede51e2af617f24726f5c0409aab4948c9847e6adb53c37";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ];
|
||||
propagatedBuildInputs = [ pure sqlite ];
|
||||
makeFlags = "libdir=$(out)/lib prefix=$(out)/";
|
||||
setupHook = ../generic-setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
description = "A SQLite module for the Pure programming language";
|
||||
homepage = http://puredocs.bitbucket.org/pure-sql3.html;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ asppsa ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user