nixpkgs/pkgs/development/web/valum/default.nix
Ryan Mulligan b7cb6fac4a valum: 0.3.14 -> 0.3.15
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.3.15 with grep in /nix/store/7w47g1l0qg7bzc1rrmllxxinjyg7zg5c-valum-0.3.15
- found 0.3.15 in filename of file in /nix/store/7w47g1l0qg7bzc1rrmllxxinjyg7zg5c-valum-0.3.15
2018-03-09 15:52:32 -08:00

26 lines
715 B
Nix

{ stdenv, meson, ninja, pkgconfig, fetchFromGitHub, glib, vala, ctpl
, libgee, libsoup, fcgi }:
stdenv.mkDerivation rec {
name = "valum-${version}";
version = "0.3.15";
src = fetchFromGitHub {
owner = "valum-framework";
repo = "valum";
rev = "v${version}";
sha256 = "1wk23aq5lxsqns58s4g9jrwx6wrk7k9hq9rg8jcs42rxn2pckaxw";
};
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ glib vala ctpl libgee libsoup fcgi ];
meta = with stdenv.lib; {
homepage = https://github.com/valum-framework/valum;
description = "Web micro-framework written in Vala";
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
};
}