chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / wi / windows10-icons / package.nix
blob8609aa7508afa0aa797a255c7cd8454abad4941c
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation (finalAttrs: {
4   pname = "windows10-icons";
5   version = "1.0";
7   src = fetchFromGitHub {
8     owner = "B00merang-Artwork";
9     repo = "Windows-10";
10     rev = "${finalAttrs.version}";
11     hash = "sha256-Yz6a7FcgPfzz4w8cKp8oq7/usIBUUZV7qhVmDewmzrI=";
12   };
14   installPhase = ''
15     runHook preInstall
17     mkdir -p $out/share/icons/windows10
18     find . \
19       ! -path ./README.md \
20       -mindepth 1 -maxdepth 1 \
21       -exec cp -r {} $out/share/icons/windows10 \;
23     runHook postInstall
24   '';
26   dontConfigure = true;
27   dontBuild = true;
29   meta = with lib; {
30     description = "Windows 10 icon theme";
31     homepage = "http://b00merang.weebly.com/windows-10.html";
32     license = licenses.unfree;
33     maintainers = with maintainers; [ mib ];
34     platforms = platforms.linux;
35   };