mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
983f488688
wallutils: 5.9.0 -> 5.10.0
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ buildGoPackage, fetchFromGitHub, lib
|
|
, pkg-config
|
|
, wayland, libX11, xbitmaps, libXcursor, libXmu, libXpm, libheif
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "wallutils";
|
|
version = "5.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xyproto";
|
|
repo = "wallutils";
|
|
rev = version;
|
|
sha256 = "1phlkpy8kg4ai2xmachpbbxvl8fga9hqqbad2a2121yl60709l1k";
|
|
};
|
|
|
|
goPackagePath = "github.com/xyproto/wallutils";
|
|
|
|
patches = [ ./lscollection-Add-NixOS-paths-to-DefaultWallpaperDirectories.patch ];
|
|
|
|
postPatch = ''
|
|
# VersionString is sometimes not up-to-date:
|
|
sed -iE 's/VersionString = "[0-9].[0-9].[0-9]"/VersionString = "${version}"/' wallutils.go
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ wayland libX11 xbitmaps libXcursor libXmu libXpm libheif ];
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for handling monitors, resolutions, and (timed) wallpapers";
|
|
inherit (src.meta) homepage;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|