mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
37 lines
692 B
Nix
37 lines
692 B
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, extra-cmake-modules
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "cask-server";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nitrux";
|
|
repo = pname;
|
|
rev = "refs/tags/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 ];
|
|
};
|
|
|
|
}
|