blob: 2f15e45113b850de7f87641f27f6a3283810abec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Fetch my wallpapers from git
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "tazjins-wallpapers-1";
src = fetchgit {
url = "https://git.tazj.in/tazjin/wallpapers.git";
rev = "3bce73b605ba5f848cb4e7cc33058a2be3952c68";
};
installPhase = ''
mkdir -p $out/share/wallpapers
cp -r $src/* $out/share/wallpapers
'';
meta = with stdenv.lib; {
description = "tazjin's wallpaper collection";
platforms = platforms.all;
};
}
|