Skip to content
Snippets Groups Projects
Commit 84106bc4 authored by Jens Nolte's avatar Jens Nolte
Browse files

Add and enable 'Simple and Soft' cursor theme

parent cb0cb730
No related branches found
No related tags found
No related merge requests found
[icon theme]
Inherits=Simple-and-Soft
\ No newline at end of file
......@@ -34,6 +34,9 @@ in
vscode
networkmanagerapplet
# cursor theme
simpleandsoft
# soft desktop dependencies
swaylockWithIdle
zsh
......
......@@ -11,6 +11,7 @@ let
haskell-ide-engine = (import ./haskell-ide-engine { inherit pkgs; }).haskell-ide-engine;
neovim = (import ./neovim { inherit pkgs; }).neovim;
nginx-sso = callPackage ./nginx-sso {};
simpleandsoft = (import ./simpleandsoft { inherit pkgs; }).simpleandsoft;
};
in newpkgs
File added
{ pkgs ? import <nixpkgs> {} }:
{
simpleandsoft = pkgs.callPackage ./simpleandsoft.nix {};
}
\ No newline at end of file
{ stdenv, fetchurl, writeTextFile, tree }:
stdenv.mkDerivation rec {
# Cursor theme "Simple and Soft" from https://store.kde.org/p/999946/
pname = "simpleandsoft";
version = "0.2";
src = ./28427-simpleandsoft-0.2.tar.gz;
indexTheme = ''
[Icon Theme]
Name=Simple-and-Soft
Comment=A simple and soft X cursor theme
Example=left_ptr_watch
'';
passAsFile = [ "indexTheme" ];
buildInputs = [ tree ];
installPhase = ''
mkdir -p "$out/share/icons/Simple-and-Soft"
tree
cp -R "cursors" "$out/share/icons/Simple-and-Soft/cursors"
install -Dm644 "$indexThemePath" "$out/share/icons/Simple-and-Soft/index.theme"
'';
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment