toaster: basic config, nixpkgs-fmt

This commit is contained in:
Grigory Shipunov 2023-01-09 23:07:46 +01:00
parent d3015fdbda
commit f690251f13
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
10 changed files with 259 additions and 24 deletions

View file

@ -1,16 +1,16 @@
{ stdenv, lib, cmake, openssl, pkgconfig, wrapQtAppsHook, fetchFromGithub }:
stdenv.mkDerivation rec {
pname = "imhex";
version = "1.24.3";
stdenv.mkDerivation rec {
pname = "imhex";
version = "1.24.3";
src = fetchFromGithub {
owner = "WerWolv";
repo = "ImHex";
rev = "v${version}";
sha256 = lib.fakeSha256;
};
src = fetchFromGithub {
owner = "WerWolv";
repo = "ImHex";
rev = "v${version}";
sha256 = lib.fakeSha256;
};
nativeBuildInputs = [
cmake
];
}
}