diff options
author | Alex Auvolat <alex@adnab.me> | 2023-09-10 11:14:20 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-09-10 11:14:28 +0200 |
commit | cce4a253a281d940e6979b61a38b335ffecd0faf (patch) | |
tree | 2b4cd35fc0a2b5ed0ee845cb49108eb7b5b3d9db /nixos/pkg_chicago95.nix | |
parent | 61c740fda66831b209b9737a21324697036b479f (diff) | |
download | user-config-cce4a253a281d940e6979b61a38b335ffecd0faf.tar.gz user-config-cce4a253a281d940e6979b61a38b335ffecd0faf.zip |
update icewm config
Diffstat (limited to 'nixos/pkg_chicago95.nix')
-rw-r--r-- | nixos/pkg_chicago95.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/nixos/pkg_chicago95.nix b/nixos/pkg_chicago95.nix new file mode 100644 index 0000000..c2a69ee --- /dev/null +++ b/nixos/pkg_chicago95.nix @@ -0,0 +1,29 @@ +{ pkgs }: + pkgs.stdenv.mkDerivation rec { + pname = "chicago95"; + version = "20230216"; + + src = pkgs.fetchgit { + url = "https://github.com/grassmunk/Chicago95.git"; + rev = "4c39951284add04941adc6ce5a68a778590b93d1"; + hash = "sha256-PwNuVAcJ6FZlALdHAvgX8H56bOkZ0llXGd09ETj4enQ="; + }; + + nativeBuildInputs = with pkgs; [ + which + ]; + + installPhase = '' + pwd + ls -lah + for p in cursors fonts gtk_theme icons backgrounds doc; do + make install_$p DESTDIR=$out prefix= + done + ''; + + meta = with pkgs.lib; { + description = "A rendition of everyone's favorite 1995 Microsoft operating system for Linux"; + homepage = "https://github.com/grassmunk/Chicago95"; + platforms = platforms.all; + }; + } |