mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
60e47734f6
The Kanboard GitHub Repo [1] references https://kanboard.org, not the https://kanboard.net. [1]: https://github.com/kanboard/kanboard
28 lines
595 B
Nix
28 lines
595 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kanboard";
|
|
version = "1.2.22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kanboard";
|
|
repo = "kanboard";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-WG2lTPpRG9KQpRdb+cS7CqF4ZDV7JZ8XtNqAI6eVzm0=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/kanboard
|
|
cp -rv . $out/share/kanboard
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Kanban project management software";
|
|
homepage = "https://kanboard.org";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lheckemann ];
|
|
};
|
|
}
|