29 lines
625 B
Nix
29 lines
625 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "winvista-cursors";
|
|
version = "1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "krizej";
|
|
repo = "winvista-cursors";
|
|
rev = "0ccde84ab0c6ec68470f59d8ec0f59045952381a";
|
|
hash = "sha256-NeMTP7KHzCXh/PAk82P3tcf6XI4SOtmtlH+SCN9qsco=";
|
|
};
|
|
|
|
installPhase = ''
|
|
thedir="$out/share/icons/winvista-cursors"
|
|
install -d $thedir
|
|
cp -r * $thedir
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Windows Vista Cursors";
|
|
homepage = "https://www.gnome-look.org/p/2061622";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|