From ef8ed516be809064c7b720b06f68bbb3f79002f1 Mon Sep 17 00:00:00 2001 From: Ashvith Shetty <113123021+Ashvith10@users.noreply.github.com> Date: Sat, 26 Aug 2023 10:31:55 +0530 Subject: tau-hydrogen: init at 1.0.11 Update pkgs/data/icons/tau-hydrogen/default.nix Co-authored-by: Lord-Valen <46138807+Lord-Valen@users.noreply.github.com> Update pkgs/data/icons/tau-hydrogen/default.nix Co-authored-by: Lily Foster Update pkgs/data/icons/tau-hydrogen/default.nix Co-authored-by: Lily Foster Update pkgs/data/icons/tau-hydrogen/default.nix Co-authored-by: Lily Foster --- pkgs/data/icons/tau-hydrogen/default.nix | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pkgs/data/icons/tau-hydrogen/default.nix (limited to 'pkgs/data/icons') diff --git a/pkgs/data/icons/tau-hydrogen/default.nix b/pkgs/data/icons/tau-hydrogen/default.nix new file mode 100644 index 00000000000..3f7aa63526d --- /dev/null +++ b/pkgs/data/icons/tau-hydrogen/default.nix @@ -0,0 +1,36 @@ +{ + stdenv, + lib, + fetchFromGitHub, + meson, + ninja, + librsvg, + xorg +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "tau-hydrogen"; + version = "1.0.11"; + + src = fetchFromGitHub { + owner = "tau-OS"; + repo = "tau-hydrogen"; + rev = finalAttrs.version; + hash = "sha256-ECrRWWS/Am0lfCIJw/BVZg53oLw79Im8d8KgAYxE+pw="; + }; + + nativeBuildInputs = [ + meson + ninja + librsvg + xorg.xcursorgen + ]; + + meta = with lib; { + description = "The GTK icon theme for tauOS"; + homepage = "https://github.com/tau-OS/tau-hydrogen"; + license = licenses.gpl3Only; + platforms = platforms.unix; + maintainers = with maintainers; [ ashvith-shetty ]; + }; +}) -- cgit 1.4.1