summary refs log tree commit diff
path: root/pkgs/applications/misc/rootbar
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-01-07 08:49:13 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-01-07 15:46:30 -0300
commitd27f7928e6072157b94d325bfbaba1fed5f13ce4 (patch)
tree4e32000bbffa1b2bc95506cc3c30d36835261ef6 /pkgs/applications/misc/rootbar
parentc92a996c8f82467bcdd8566981d0c71b42c74833 (diff)
downloadnixpkgs-d27f7928e6072157b94d325bfbaba1fed5f13ce4.tar
nixpkgs-d27f7928e6072157b94d325bfbaba1fed5f13ce4.tar.gz
nixpkgs-d27f7928e6072157b94d325bfbaba1fed5f13ce4.tar.bz2
nixpkgs-d27f7928e6072157b94d325bfbaba1fed5f13ce4.tar.lz
nixpkgs-d27f7928e6072157b94d325bfbaba1fed5f13ce4.tar.xz
nixpkgs-d27f7928e6072157b94d325bfbaba1fed5f13ce4.tar.zst
nixpkgs-d27f7928e6072157b94d325bfbaba1fed5f13ce4.zip
rootbar: init at unstable-2020-11-13
Diffstat (limited to 'pkgs/applications/misc/rootbar')
-rw-r--r--pkgs/applications/misc/rootbar/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/applications/misc/rootbar/default.nix b/pkgs/applications/misc/rootbar/default.nix
new file mode 100644
index 00000000000..2eb3170b88c
--- /dev/null
+++ b/pkgs/applications/misc/rootbar/default.nix
@@ -0,0 +1,45 @@
+{ stdenv
+, fetchhg
+, pkg-config
+, meson
+, ninja
+, gtk3
+, json_c
+, libpulseaudio
+, wayland
+, wrapGAppsHook
+}:
+
+stdenv.mkDerivation rec {
+  pname = "rootbar";
+  version = "unstable-2020-11-13";
+
+  src = fetchhg {
+    url = "https://hg.sr.ht/~scoopta/rootbar";
+    rev = "a018e10cfc5e";
+    sha256 = "sha256-t6oDIYCVaCxaYy4bS1vxESaFDNxsx5JQLQK77eVuafE=";
+  };
+
+  nativeBuildInputs = [
+    meson ninja pkg-config wrapGAppsHook
+  ];
+
+  buildInputs = [
+    gtk3
+    json_c
+    libpulseaudio
+    wayland
+  ];
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/alexays/waybar";
+    description = "A bar for Wayland WMs";
+    longDescription = ''
+      Root Bar is a bar for wlroots based wayland compositors such as sway and
+      was designed to address the lack of good bars for wayland.
+    '';
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = platforms.unix;
+  };
+}