46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
22 lines
564 B
Nix
22 lines
564 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "elfinfo";
|
|
version = "0.7.5";
|
|
|
|
goPackagePath = "github.com/xyproto/elfinfo";
|
|
src = fetchFromGitHub {
|
|
rev = version;
|
|
owner = "xyproto";
|
|
repo = "elfinfo";
|
|
sha256 = "0b6zyfq0yhpbf03h52q2lgf6ff086gcsbnhm6chx18h0q1g17m96";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Small utility for showing information about ELF files";
|
|
homepage = https://elfinfo.roboticoverlords.org/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
};
|
|
}
|