nixpkgs/pkgs/kde/misc/oxygen-icons/default.nix
K900 ce77225e21 pkgs/kde: init at 6.0.0 / 24.02.0, the Nix bits
This is the thing you want to look at.
2024-02-28 18:49:23 +03:00

19 lines
347 B
Nix

{
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];
}