mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
valum: init at 0.2.0
This commit is contained in:
parent
62b567bf56
commit
e6a7834a56
29
pkgs/development/web/valum/default.nix
Normal file
29
pkgs/development/web/valum/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, pkgconfig, fetchFromGitHub, python, glib, vala, ctpl
|
||||
, libgee, libsoup, fcgi }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "valum-${version}";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "valum-framework";
|
||||
repo = "valum";
|
||||
rev = "v${version}";
|
||||
sha256 = "1lciwqk4k9sf1hl4drl207g0ydlxl906kx9lx5fqhfb8gwcfqh2g";
|
||||
};
|
||||
|
||||
buildInputs = [ python pkgconfig glib vala ctpl libgee libsoup fcgi ];
|
||||
|
||||
configurePhase = ''python waf configure --prefix=$out'';
|
||||
|
||||
buildPhase = ''python waf build'';
|
||||
|
||||
installPhase = ''python waf install'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/valum-framework/valum;
|
||||
description = "Web micro-framework written in Vala";
|
||||
plaforms = platforms.linux;
|
||||
maintainers = [ maintainers.lethalman ];
|
||||
};
|
||||
}
|
@ -3476,6 +3476,11 @@ let
|
||||
|
||||
urlwatch = callPackage ../tools/networking/urlwatch { };
|
||||
|
||||
valum = callPackage ../development/web/valum {
|
||||
inherit (gnome3) libgee;
|
||||
vala = vala_0_28;
|
||||
};
|
||||
|
||||
varnish = callPackage ../servers/varnish { };
|
||||
|
||||
venus = callPackage ../tools/misc/venus {
|
||||
|
Loading…
Reference in New Issue
Block a user