depot/pkgs/data/icons/tau-hydrogen/default.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

36 lines
641 B
Nix

{
stdenv,
lib,
fetchFromGitHub,
meson,
ninja,
librsvg,
xorg
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tau-hydrogen";
version = "1.0.16";
src = fetchFromGitHub {
owner = "tau-OS";
repo = "tau-hydrogen";
rev = finalAttrs.version;
hash = "sha256-nnQ0lkHtkOjJhF4NSMqjt0deddYjMnHHlANlHoZS2wY=";
};
nativeBuildInputs = [
meson
ninja
librsvg
xorg.xcursorgen
];
meta = with lib; {
description = "GTK icon theme for tauOS";
homepage = "https://github.com/tau-OS/tau-hydrogen";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = [ ];
};
})