Merge pull request #176612 from azahi/elfinfo
elfinfo: use buildGoModule
This commit is contained in:
commit
2f853e090c
1 changed files with 9 additions and 4 deletions
|
@ -1,20 +1,25 @@
|
||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "elfinfo";
|
pname = "elfinfo";
|
||||||
version = "1.1.0";
|
version = "1.1.0";
|
||||||
|
|
||||||
goPackagePath = "github.com/xyproto/elfinfo";
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = version;
|
|
||||||
owner = "xyproto";
|
owner = "xyproto";
|
||||||
repo = "elfinfo";
|
repo = "elfinfo";
|
||||||
|
rev = version;
|
||||||
sha256 = "1n8bg0rcq9fqa6rdnk6x9ngvm59hcayblkpjv9j5myn2vmm6fv8m";
|
sha256 = "1n8bg0rcq9fqa6rdnk6x9ngvm59hcayblkpjv9j5myn2vmm6fv8m";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = null;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Small utility for showing information about ELF files";
|
description = "Small utility for showing information about ELF files";
|
||||||
homepage = "https://elfinfo.roboticoverlords.org/";
|
homepage = "https://elfinfo.roboticoverlords.org/";
|
||||||
|
changelog = "https://github.com/xyproto/elfinfo/releases/tag/${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ dtzWill ];
|
maintainers = with maintainers; [ dtzWill ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue