about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFernando Ayats <ayatsfer@gmail.com>2024-02-25 10:54:42 +0100
committerFernando Ayats <ayatsfer@gmail.com>2024-02-27 09:40:27 +0100
commit9f9670c1426836b186d9d3172f71504ad704d881 (patch)
tree8077d386e2ea5efebdba9bf4475a2c5c6d2a3845 /pkgs
parent747048d0869b70aab174c8e4bd99b497dd48769b (diff)
elf-info: init at 0.3.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/el/elf-info/package.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/by-name/el/elf-info/package.nix b/pkgs/by-name/el/elf-info/package.nix
new file mode 100644
index 0000000000000..ac633286606cf
--- /dev/null
+++ b/pkgs/by-name/el/elf-info/package.nix
@@ -0,0 +1,29 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+, nix-update-script
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "elf-info";
+  version = "0.3.0";
+
+  src = fetchFromGitHub {
+    owner = "kevin-lesenechal";
+    repo = "elf-info";
+    rev = "v${version}";
+    hash = "sha256-wbFVuoarOoxV9FqmuHJ9eZlG4rRqy1rsnuqbGorC2Rk=";
+  };
+
+  cargoHash = "sha256-r4GcJhQn9x5c2hbL+813mS3HbIg8OwNDsMg/fHQoL9Y=";
+
+  passthru.updateScript = nix-update-script { };
+
+  meta = {
+    description = "Inspect and dissect an ELF file with pretty formatting";
+    homepage = "https://github.com/kevin-lesenechal/elf-info";
+    license = lib.licenses.gpl3Only;
+    maintainers = with lib.maintainers; [ viperML ];
+    mainProgram = "elf";
+  };
+}