biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / sa / sandbar / package.nix
blob8c754289aa0019fb50102dcdd73bd3c32570d509
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   pixman,
6   fcft,
7   pkg-config,
8   wayland-protocols,
9   wayland-scanner,
10   wayland
13 stdenv.mkDerivation (finalAttrs: {
14   pname = "sandbar";
15   version = "0.1";
17   src = fetchFromGitHub {
18     owner = "kolunmi";
19     repo = "sandbar";
20     rev = "v${finalAttrs.version}";
21     hash = "sha256-uG+/e75s/OQtEotR+8aXTEjW6p3oJM8btuRNgUVmIiQ=";
22   };
24   strictDeps = true;
26   nativeBuildInputs = [ pkg-config ];
28   buildInputs = [
29     wayland-scanner
30     wayland-protocols
31     wayland
32     pixman
33     fcft
34   ];
36   makeFlags = [ "PREFIX=$(out)" ];
38   meta = with lib; {
39     homepage = "https://github.com/kolunmi/sandbar";
40     description = "DWM-like bar for the river wayland compositor";
41     license = licenses.gpl3Plus;
42     maintainers = with maintainers; [ fccapria ];
43     platforms = platforms.all;
44     badPlatforms = platforms.darwin;
45     mainProgram = "sandbar";
46   };