about summary refs log tree commit diff
path: root/pkgs/tools/graphics/wallutils
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-09-21 04:30:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-09-21 04:30:00 -0500
commitf14caea161057a9daf3690e81116a1f8d7f07215 (patch)
tree3cec9c31073af971ae1a4296eeebbf4830df813c /pkgs/tools/graphics/wallutils
parent4a414f378bad44f24010fadc53404ad3247bdded (diff)
downloadnixlib-f14caea161057a9daf3690e81116a1f8d7f07215.tar
nixlib-f14caea161057a9daf3690e81116a1f8d7f07215.tar.gz
nixlib-f14caea161057a9daf3690e81116a1f8d7f07215.tar.bz2
nixlib-f14caea161057a9daf3690e81116a1f8d7f07215.tar.lz
nixlib-f14caea161057a9daf3690e81116a1f8d7f07215.tar.xz
nixlib-f14caea161057a9daf3690e81116a1f8d7f07215.tar.zst
nixlib-f14caea161057a9daf3690e81116a1f8d7f07215.zip
wallutils: use buildGoPackage
Diffstat (limited to 'pkgs/tools/graphics/wallutils')
-rw-r--r--pkgs/tools/graphics/wallutils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/graphics/wallutils/default.nix b/pkgs/tools/graphics/wallutils/default.nix
index 1b578628cafa..80b90e8e6b21 100644
--- a/pkgs/tools/graphics/wallutils/default.nix
+++ b/pkgs/tools/graphics/wallutils/default.nix
@@ -1,8 +1,8 @@
-{ buildGoModule, fetchFromGitHub, lib
+{ buildGoPackage, fetchFromGitHub, lib
 , wayland, libX11, xbitmaps, libXcursor, libXmu, libXpm
 }:
 
-buildGoModule rec {
+buildGoPackage rec {
   pname = "wallutils";
   version = "5.8.2";
 
@@ -13,7 +13,7 @@ buildGoModule rec {
     sha256 = "1ghvcxsy5prj8l38r4lg39imsqbwmvn1zmiv7004j6skmgpaaawh";
   };
 
-  modSha256 = "0siw1g3fsk1xjri9k1pb03filax8an5sfza5db52krh80g9xasah";
+  goPackagePath = "github.com/xyproto/wallutils";
 
   patches = [ ./lscollection-Add-NixOS-paths-to-DefaultWallpaperDirectories.patch ];