mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ stdenvNoCC
|
|
, lib
|
|
, fetchzip
|
|
, xorg
|
|
, hicolor-icon-theme
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "vanilla-dmz";
|
|
version = "0.4.5";
|
|
|
|
src = fetchzip {
|
|
url = "mirror://debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${version}.tar.xz";
|
|
sha256 = "14r8fri4byyzavzdifpga6118hxqjwpzd11xxj28s16zxcanq16m";
|
|
};
|
|
|
|
buildInputs = [
|
|
xorg.xcursorgen
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
for theme in DMZ-{White,Black}; do
|
|
pushd $theme/pngs
|
|
./make.sh
|
|
popd
|
|
done
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
for theme in DMZ-{White,Black}; do
|
|
mkdir -p $out/share/icons/$theme/cursors
|
|
cp -a $theme/xcursors/* $out/share/icons/$theme/cursors/
|
|
install -m644 $theme/index.theme $out/share/icons/$theme/index.theme
|
|
done
|
|
|
|
ln -s $out/share/icons/{DMZ-White,Vanilla-DMZ}
|
|
ln -s $out/share/icons/{DMZ-Black,Vanilla-DMZ-AA}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://jimmac.musichall.cz";
|
|
description = "Style neutral scalable cursor theme";
|
|
platforms = platforms.all;
|
|
license = licenses.cc-by-sa-30;
|
|
maintainers = [ ];
|
|
};
|
|
}
|