diff options
Diffstat (limited to 'pkgs')
| -rw-r--r-- | pkgs/imhex.nix | 17 |
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 + ]; +} |
