This commit is contained in:
Grigory Shipunov 2022-10-28 01:57:00 +02:00
parent 846e9e536d
commit cbe96a1738
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
4 changed files with 38 additions and 20 deletions

17
pkgs/imhex.nix Normal file
View file

@ -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
];
}