mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
34 lines
738 B
Nix
34 lines
738 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ronn, git, cmocka }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "blogc";
|
|
version = "0.20.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "blogc";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-YAwGgV5Vllz8JlIASbGIkdRzpciQbgPiXl5DjiSEJyE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [ ronn git cmocka ];
|
|
|
|
configureFlags = [
|
|
"--enable-git-receiver"
|
|
"--enable-make"
|
|
"--enable-runserver"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "A blog compiler";
|
|
license = licenses.bsd3;
|
|
homepage = "https://blogc.rgm.io";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
};
|
|
}
|