about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/misc/oxygen-icons/default.nix
blob: 91144f0c0bcf025b106be60bceff147e45bd1ad2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  lib,
  mkKdeDerivation,
  fetchurl,
}:
mkKdeDerivation rec {
  pname = "oxygen-icons";
  version = "6.0.0";

  src = fetchurl {
    url = "mirror://kde/stable/oxygen-icons/oxygen-icons-${version}.tar.xz";
    hash = "sha256-KOwYKHXcwV2SePRc7RECaqOSR28fRUhxueLINwCOV3Q=";
  };

  dontStrip = true;

  meta.license = [lib.licenses.lgpl3Plus];
}