File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
pkgs/by-name/po/pop-hp-wallpapers Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments