Fairly complete set of packages for Pure

This commit is contained in:
Alastair Pharo
2015-05-26 16:58:18 +10:00
parent a92271f195
commit 47aeaf9d04
32 changed files with 760 additions and 13 deletions

View 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 ];
};
}