about summary refs log tree commit diff
path: root/pkgs/by-name/wi/windows10-icons/package.nix
blob: 8609aa7508afa0aa797a255c7cd8454abad4941c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib, stdenvNoCC, fetchFromGitHub }:

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "windows10-icons";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "B00merang-Artwork";
    repo = "Windows-10";
    rev = "${finalAttrs.version}";
    hash = "sha256-Yz6a7FcgPfzz4w8cKp8oq7/usIBUUZV7qhVmDewmzrI=";
  };

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/icons/windows10
    find . \
      ! -path ./README.md \
      -mindepth 1 -maxdepth 1 \
      -exec cp -r {} $out/share/icons/windows10 \;

    runHook postInstall
  '';

  dontConfigure = true;
  dontBuild = true;

  meta = with lib; {
    description = "Windows 10 icon theme";
    homepage = "http://b00merang.weebly.com/windows-10.html";
    license = licenses.unfree;
    maintainers = with maintainers; [ mib ];
    platforms = platforms.linux;
  };
})