lol

hackneyed: init at 0.8.2

+36
+34
pkgs/data/icons/hackneyed/default.nix
··· 1 + { lib, fetchzip, stdenvNoCC, fetchFromGitLab, xcursorgen, imagemagick6, inkscape }: 2 + 3 + stdenvNoCC.mkDerivation rec { 4 + pname = "hackneyed"; 5 + version = "0.8.2"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "Enthymeme"; 9 + repo = "hackneyed-x11-cursors"; 10 + rev = version; 11 + sha256 = "sha256-Wtrw/EzxCj4cAyfdBp0OJE4+c6FouW7+b6nFTLxdXNY="; 12 + }; 13 + 14 + buildInputs = [ imagemagick6 inkscape xcursorgen ]; 15 + 16 + postPatch = '' 17 + patchShebangs *.sh 18 + substituteInPlace make-png.sh \ 19 + --replace /usr/bin/inkscape ${inkscape}/bin/inkscape 20 + ''; 21 + 22 + enableParallelBuilding = true; 23 + 24 + makeFlags = [ "PREFIX=$(out)" ]; 25 + buildFlags = [ "theme" "theme.left" ]; 26 + 27 + meta = with lib; { 28 + homepage = "https://gitlab.com/Enthymeme/hackneyed-x11-cursors"; 29 + description = "A scalable cursor theme that resembles Windows 3.x/NT 3.x cursors"; 30 + platforms = platforms.all; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ somasis ]; 33 + }; 34 + }
+2
pkgs/top-level/all-packages.nix
··· 7271 7271 7272 7272 hackertyper = callPackage ../tools/misc/hackertyper { }; 7273 7273 7274 + hackneyed = callPackage ../data/icons/hackneyed { }; 7275 + 7274 7276 haveged = callPackage ../tools/security/haveged { }; 7275 7277 7276 7278 habitat = callPackage ../applications/networking/cluster/habitat { };