summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorGrigory Shipunov2022-10-28 01:57:00 +0200
committerGrigory Shipunov2022-10-28 01:57:00 +0200
commitcbe96a1738148571b8e027f26f777cd12b3259b4 (patch)
treee225f71b942178d1488b0c658ffd274a07555f4a /pkgs
parent846e9e536db9286950120caf2fcd3f02a5b04b9d (diff)
yolo
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/imhex.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/imhex.nix b/pkgs/imhex.nix
new file mode 100644
index 0000000..f7d912f
--- /dev/null
+++ b/pkgs/imhex.nix
@@ -0,0 +1,17 @@
+{ stdenv, lib, cmake, openssl, pkgconfig, wrapQtAppsHook, fetchFromGithub }: {
+ stdenv.mkDerivation rec {
+ pname = "imhex";
+ version = "1.24.3";
+
+ src = fetchFromGithub {
+ owner = "WerWolv";
+ repo = "ImHex";
+ rev = "v${version}";
+ sha256 = lib.fakeSha256;
+ };
+ };
+
+ nariveBuildInputs = [
+ cmake
+ ];
+}