1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00
nixpkgs/pkgs/servers/web-apps/vikunja/frontend.nix

34 lines
748 B
Nix
Raw Normal View History

2021-06-26 13:26:17 +01:00
{ stdenv, lib, fetchurl, unzip, nixosTests, ... }:
2021-06-10 20:10:48 +01:00
stdenv.mkDerivation rec {
pname = "vikunja-frontend";
2021-09-24 21:52:54 +01:00
version = "0.18.1";
2021-06-10 20:10:48 +01:00
src = fetchurl {
url = "https://dl.vikunja.io/frontend/${pname}-${version}.zip";
2021-09-24 21:52:54 +01:00
sha256 = "sha256-u4XA6Jqn+p2J0sB2KabwZY/lFwZakZEvUUh/enrhtN4=";
2021-06-10 20:10:48 +01:00
};
nativeBuildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p $out/
cp -r * $out/
runHook postInstall
'';
2021-06-26 13:26:17 +01:00
passthru.tests.vikunja = nixosTests.vikunja;
2021-06-10 20:10:48 +01:00
meta = {
description = "Frontend of the Vikunja to-do list app";
homepage = "https://vikunja.io/";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ em0lar ];
platforms = lib.platforms.all;
};
}