forked from mirrors/nixpkgs
kore: init at 2.0.0
This commit is contained in:
parent
45ffca6ff8
commit
4219de070d
|
@ -287,6 +287,7 @@
|
|||
joelmo = "Joel Moberg <joel.moberg@gmail.com>";
|
||||
joelteon = "Joel Taylor <me@joelt.io>";
|
||||
johbo = "Johannes Bornhold <johannes@bornhold.name>";
|
||||
johnmh = "John M. Harris, Jr. <johnmh@openblox.org>";
|
||||
johnramsden = "John Ramsden <johnramsden@riseup.net>";
|
||||
joko = "Ioannis Koutras <ioannis.koutras@gmail.com>";
|
||||
jonafato = "Jon Banafato <jon@jonafato.com>";
|
||||
|
|
23
pkgs/development/web/kore/default.nix
Normal file
23
pkgs/development/web/kore/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchFromGitHub, openssl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kore-2.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jorisvink";
|
||||
repo = "kore";
|
||||
rev = "2.0.0-release";
|
||||
sha256 = "1jjhx9gfjzpsrs7b9rgb46k6v03azrxz9fq7vkn9zyz6zvnjj614";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An easy to use web application framework for C";
|
||||
homepage = https://kore.io;
|
||||
license = licenses.isc;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ johnmh ];
|
||||
};
|
||||
}
|
|
@ -2828,6 +2828,8 @@ with pkgs;
|
|||
|
||||
knockknock = callPackage ../tools/security/knockknock { };
|
||||
|
||||
kore = callPackage ../development/web/kore { };
|
||||
|
||||
partition-manager = libsForQt5.callPackage ../tools/misc/partition-manager { };
|
||||
|
||||
kpcli = callPackage ../tools/security/kpcli { };
|
||||
|
|
Loading…
Reference in a new issue