mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
ce77225e21
This is the thing you want to look at.
19 lines
347 B
Nix
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];
|
|
}
|