valum: 0.2.16 → 0.3.14

This commit is contained in:
Jan Tojnar 2017-12-19 04:46:51 +01:00
parent 527f075860
commit 120f46889c
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,29 +1,24 @@
{ stdenv, pkgconfig, fetchFromGitHub, python, glib, vala_0_28, ctpl { stdenv, meson, ninja, pkgconfig, fetchFromGitHub, glib, vala, ctpl
, libgee, libsoup, fcgi }: , libgee, libsoup, fcgi }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "valum-${version}"; name = "valum-${version}";
version = "0.2.16"; version = "0.3.14";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "valum-framework"; owner = "valum-framework";
repo = "valum"; repo = "valum";
rev = "v${version}"; rev = "v${version}";
sha256 = "0ca067gg5z1798bazwzgg2yd2mbysvk8i2q2v3i8d0d188y2hj84"; sha256 = "1w1mipczcfmrrxg369wvrj3wvf76rqn8rrkxbq88aial1bi23kd3";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ python glib vala_0_28 ctpl libgee libsoup fcgi ]; buildInputs = [ glib vala ctpl libgee libsoup fcgi ];
configurePhase = ''python waf configure --prefix=$out'';
buildPhase = ''python waf build'';
installPhase = ''python waf install'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://github.com/valum-framework/valum; homepage = https://github.com/valum-framework/valum;
description = "Web micro-framework written in Vala"; description = "Web micro-framework written in Vala";
license = licenses.lgpl3;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.lethalman ]; maintainers = [ maintainers.lethalman ];
}; };