stacktile: init at 1.0.0

This commit is contained in:
Anderson Torres 2023-08-26 11:06:45 -03:00
parent 37e5c71d87
commit 3d6dd9b4af
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{ lib
, stdenv
, fetchFromSourcehut
, wayland
, wayland-scanner
}:
stdenv.mkDerivation (finalAttrs: {
pname = "stacktile";
version = "1.0.0";
src = fetchFromSourcehut {
owner = "~leon_plickat";
repo = "stacktile";
rev = "v${finalAttrs.version}";
hash = "sha256-IOFxgYMjh92jx2CPfBRZDL/1ucgfHtUyAL5rS2EG+Gc=";
};
outputs = [ "out" "man" ];
nativeBuildInputs = [
wayland-scanner
];
buildInputs = [
wayland
];
makeFlags = [
"PREFIX=${placeholder "out"}"
"MANDIR=${placeholder "man"}/share/man"
];
strictDeps = true;
meta = {
homepage = "https://sr.ht/~leon_plickat/stacktile/";
description = "Layout generator for the river Wayland compositor";
license = with lib.licenses; [ gpl3Plus ];
mainProgram = "stacktile";
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.linux;
};
})

View file

@ -1304,6 +1304,8 @@ with pkgs;
singularity-tools = callPackage ../build-support/singularity-tools { };
stacktile = callPackage ../tools/wayland/stacktile { };
sirula = callPackage ../tools/wayland/sirula { };
sitelen-seli-kiwen = callPackage ../data/fonts/sitelen-seli-kiwen { };