depot/pkgs/by-name/be/bevelbar/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

46 lines
935 B
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
libX11,
libXft,
libXrandr,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "bevelbar";
version = "24.07";
src = fetchurl {
url = "https://www.uninformativ.de/git/bevelbar/archives/bevelbar-v${finalAttrs.version}.tar.gz";
hash = "sha256-PUYgbJCII0JecetoY3dMBUgrtaVhlLKeaJY27JJ78RQ=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libX11
libXft
libXrandr
];
makeFlags = [ "prefix=$(out)" ];
passthru.updateScript = gitUpdater {
url = "https://www.uninformativ.de/git/bevelbar.git/";
rev-prefix = "v";
};
meta = {
homepage = "https://www.uninformativ.de/git/bevelbar/file/README.html";
description = "X11 status bar with beveled borders";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
AndersonTorres
neeasade
];
platforms = lib.platforms.linux;
};
})