mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
26 lines
562 B
Nix
26 lines
562 B
Nix
{ stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kanboard-${version}";
|
|
version = "1.0.44";
|
|
|
|
src = fetchzip {
|
|
url = "https://kanboard.net/${name}.zip";
|
|
sha256 = "1cwk9gcwddwbbw6hz2iqmkmy90rwddy79b9vi6fj9cl03zswypgn";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/kanboard
|
|
cp -rv . $out/share/kanboard
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Kanban project management software";
|
|
homepage = https://kanboard.net;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|