spatial-shell: init at 7
This commit is contained in:
parent
a887251577
commit
c92ba66dba
37
pkgs/by-name/sp/spatial-shell/package.nix
Normal file
37
pkgs/by-name/sp/spatial-shell/package.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, ocamlPackages
|
||||
, fetchFromGitHub
|
||||
, scdoc
|
||||
}:
|
||||
|
||||
ocamlPackages.buildDunePackage rec {
|
||||
pname = "spatial-shell";
|
||||
version = "7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lthms";
|
||||
repo = "spatial-shell";
|
||||
rev = version;
|
||||
hash = "sha256-OeNBP/jea1ABh/WpvCP7We+L20WoTfLZH71raH7bKPI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
scdoc
|
||||
];
|
||||
|
||||
buildInputs = with ocamlPackages; [
|
||||
cmdliner
|
||||
ezjsonm-encoding
|
||||
poll
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Implementing a spatial model inspired by Material Shell, for i3 and sway";
|
||||
homepage = "https://spatial-shell.app";
|
||||
changelog = "https://github.com/lthms/spatial-shell/blob/${src.rev}/CHANGES.md";
|
||||
license = lib.licenses.mpl20;
|
||||
maintainers = with lib.maintainers; [ fgaz ];
|
||||
mainProgram = "spatial";
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user