Files

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

38 lines
697 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
mkDerivation,
fetchFromGitHub,
cmake,
extra-cmake-modules,
}:
mkDerivation rec {
pname = "cask-server";
version = "0.6.0";
src = fetchFromGitHub {
owner = "Nitrux";
repo = "cask-server";
tag = "v${version}";
sha256 = "sha256-XUgLtZMcvzGewtUcgu7FbBCn/1zqOjWvw2AI9gUwWkc=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
meta = with lib; {
description = "Public server and API to interface with Cask features";
mainProgram = "CaskServer";
homepage = "https://github.com/Nitrux/cask-server";
license = with licenses; [
bsd2
lgpl21Plus
cc0
];
maintainers = with maintainers; [ onny ];
};
}