nixpkgs/pkgs/by-name/fl/fluidd/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
845 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchurl, unzip, nixosTests }:
2021-07-21 02:21:03 +00:00
stdenvNoCC.mkDerivation rec {
pname = "fluidd";
2024-10-20 06:10:29 +00:00
version = "1.30.5";
2021-07-21 02:21:03 +00:00
src = fetchurl {
name = "fluidd-v${version}.zip";
url = "https://github.com/fluidd-core/fluidd/releases/download/v${version}/fluidd.zip";
2024-10-20 06:10:29 +00:00
sha256 = "sha256-Ry9aD8pSFw076yIywik0ov+ZPNRsI9srM4YJBW/1bY8=";
2021-07-21 02:21:03 +00:00
};
nativeBuildInputs = [ unzip ];
dontConfigure = true;
dontBuild = true;
unpackPhase = ''
mkdir fluidd
unzip $src -d fluidd
'';
installPhase = ''
mkdir -p $out/share/fluidd
cp -r fluidd $out/share/fluidd/htdocs
'';
passthru.tests = { inherit (nixosTests) fluidd; };
2021-07-21 02:21:03 +00:00
meta = with lib; {
description = "Klipper web interface";
homepage = "https://docs.fluidd.xyz";
license = licenses.gpl3Only;
maintainers = with maintainers; [ zhaofengli ];
};
}