Skip to content

Commit

Permalink
pop-hp-wallpapers: init at 0-unstable-2022-04-01
Browse files Browse the repository at this point in the history
(cherry picked from commit a3f3012)
  • Loading branch information
Pandapip1 authored and github-actions[bot] committed Mar 10, 2025
1 parent 22282c7 commit f16fe69
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/by-name/po/pop-hp-wallpapers/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
fetchpatch,
imagemagick,
nix-update-script,
}:

stdenvNoCC.mkDerivation {
pname = "pop-hp-wallpapers";
version = "0-unstable-2022-04-01";

src = fetchFromGitHub {
owner = "pop-os";
repo = "hp-wallpapers";
rev = "df86078846b0a2a4e3e64f584aaf2a21be47a7eb";
forceFetchGit = true;
fetchLFS = true;
hash = "sha256-NGSvPC9GadqqqgGH9uDNAYuSwfagosmCAE6QmDtmdMw=";
};

nativeBuildInputs = [ imagemagick ];

makeFlags = [ "prefix=$(out)" ];

passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };

meta = {
description = "Wallpapers for High-Performance System76 products";
homepage = "https://pop.system76.com/";
license = with lib.licenses; [ cc-by-sa-40 ];
maintainers = with lib.maintainers; [ pandapip1 ];
platforms = lib.platforms.all;
};
}

0 comments on commit f16fe69

Please sign in to comment.