about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-09-21 04:33:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-09-21 04:33:00 -0500
commitd02d88febabc96c83c2cc2e825ec61f36f52d3a3 (patch)
treee67d6b1d0871759ab7810a0b9c09cad844829b00 /pkgs/development/tools
parent9db2a8154c5ae4447df7ea8ca517045c65fccb62 (diff)
downloadnixlib-d02d88febabc96c83c2cc2e825ec61f36f52d3a3.tar
nixlib-d02d88febabc96c83c2cc2e825ec61f36f52d3a3.tar.gz
nixlib-d02d88febabc96c83c2cc2e825ec61f36f52d3a3.tar.bz2
nixlib-d02d88febabc96c83c2cc2e825ec61f36f52d3a3.tar.lz
nixlib-d02d88febabc96c83c2cc2e825ec61f36f52d3a3.tar.xz
nixlib-d02d88febabc96c83c2cc2e825ec61f36f52d3a3.tar.zst
nixlib-d02d88febabc96c83c2cc2e825ec61f36f52d3a3.zip
elfinfo: use buildGoPackage
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/elfinfo/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/elfinfo/default.nix b/pkgs/development/tools/misc/elfinfo/default.nix
index cb127906c0bf..b1a51a771448 100644
--- a/pkgs/development/tools/misc/elfinfo/default.nix
+++ b/pkgs/development/tools/misc/elfinfo/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, buildGoModule, fetchFromGitHub }:
+{ stdenv, buildGoPackage, fetchFromGitHub }:
 
-buildGoModule rec {
+buildGoPackage rec {
   pname = "elfinfo";
   version = "0.7.6";
 
@@ -12,8 +12,6 @@ buildGoModule rec {
     sha256 = "0f6ik4d157assxdfslnyc91mg70kfh396rapikfv473znx2v2pg9";
   };
 
-  modSha256 = "1xr0pylaqcb4f4g862120cgqdxp0bpwsk77zd6g7kk91lqdcvsdf";
-
   meta = with stdenv.lib; {
     description = "Small utility for showing information about ELF files";
     homepage = https://elfinfo.roboticoverlords.org/;