Skip to content

Commit a3f3012

Browse files
committed
pop-hp-wallpapers: init at 0-unstable-2022-04-01
1 parent 3304b34 commit a3f3012

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
lib,
3+
stdenvNoCC,
4+
fetchFromGitHub,
5+
fetchpatch,
6+
imagemagick,
7+
nix-update-script,
8+
}:
9+
10+
stdenvNoCC.mkDerivation {
11+
pname = "pop-hp-wallpapers";
12+
version = "0-unstable-2022-04-01";
13+
14+
src = fetchFromGitHub {
15+
owner = "pop-os";
16+
repo = "hp-wallpapers";
17+
rev = "df86078846b0a2a4e3e64f584aaf2a21be47a7eb";
18+
forceFetchGit = true;
19+
fetchLFS = true;
20+
hash = "sha256-NGSvPC9GadqqqgGH9uDNAYuSwfagosmCAE6QmDtmdMw=";
21+
};
22+
23+
nativeBuildInputs = [ imagemagick ];
24+
25+
makeFlags = [ "prefix=$(out)" ];
26+
27+
passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
28+
29+
meta = {
30+
description = "Wallpapers for High-Performance System76 products";
31+
homepage = "https://pop.system76.com/";
32+
license = with lib.licenses; [ cc-by-sa-40 ];
33+
maintainers = with lib.maintainers; [ pandapip1 ];
34+
platforms = lib.platforms.all;
35+
};
36+
}

0 commit comments

Comments
 (0)