mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
Merge pull request #251846 from Ashvith10/tau-hydrogen-icon-theme
tau-hydrogen: init at 1.0.11
This commit is contained in:
commit
9f9d9a6db0
|
@ -1516,6 +1516,11 @@
|
|||
githubId = 11037075;
|
||||
name = "Ashley Hooper";
|
||||
};
|
||||
ashvith-shetty = {
|
||||
github = "Ashvith10";
|
||||
githubId = 113123021;
|
||||
name = "Ashvith Shetty";
|
||||
};
|
||||
aske = {
|
||||
email = "aske@fmap.me";
|
||||
github = "aske";
|
||||
|
|
36
pkgs/data/icons/tau-hydrogen/default.nix
Normal file
36
pkgs/data/icons/tau-hydrogen/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
})
|
|
@ -30260,6 +30260,8 @@ with pkgs;
|
|||
gtk = res.gtk2;
|
||||
};
|
||||
|
||||
tau-hydrogen = callPackage ../data/icons/tau-hydrogen { };
|
||||
|
||||
theme-jade1 = callPackage ../data/themes/jade1 { };
|
||||
|
||||
theme-obsidian2 = callPackage ../data/themes/obsidian2 { };
|
||||
|
|
Loading…
Reference in a new issue