nixpkgs-suyu/pkgs/data/icons/bibata-cursors/default.nix

45 lines
1,001 B
Nix
Raw Normal View History

{ stdenvNoCC, fetchFromGitHub, gnome-themes-extra, inkscape, xcursorgen, python3 }:
2018-12-13 01:21:55 +01:00
let
py = python3.withPackages(ps: [ ps.pillow ]);
in stdenvNoCC.mkDerivation rec {
pname = "bibata-cursors";
version = "0.4.2";
2018-12-13 01:21:55 +01:00
src = fetchFromGitHub {
owner = "KaizIqbal";
repo = "Bibata_Cursor";
rev = "v${version}";
sha256 = "1f7i5jkl21fvrr45zpcj40avkc7camjb1ddrrdlaabbplgz5mcgn";
2018-12-13 01:21:55 +01:00
};
postPatch = ''
patchShebangs .
substituteInPlace build.sh --replace "sudo" ""
2018-12-13 01:21:55 +01:00
'';
nativeBuildInputs = [
gnome-themes-extra
inkscape
xcursorgen
py
2018-12-13 01:21:55 +01:00
];
buildPhase = ''
HOME="$NIX_BUILD_ROOT" ./build.sh
'';
installPhase = ''
install -dm 0755 $out/share/icons
cp -pr Bibata_* $out/share/icons/
'';
meta = with stdenvNoCC.lib; {
2018-12-13 01:21:55 +01:00
description = "Material Based Cursor";
homepage = https://github.com/KaizIqbal/Bibata_Cursor;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ rawkode ];
};
}