summaryrefslogtreecommitdiff
path: root/pkgs/imhex.nix
diff options
context:
space:
mode:
authorGrigory Shipunov2023-01-09 23:07:46 +0100
committerGrigory Shipunov2023-01-09 23:07:46 +0100
commitf690251f1344e65c1f40492b09f355b0b3b00d6a (patch)
tree5eebf9c279a948feb1794e931fa5fc617704efaf /pkgs/imhex.nix
parentd3015fdbdae7c95a7425c5ab50b101c4d4a14cba (diff)
toaster: basic config, nixpkgs-fmt
Diffstat (limited to 'pkgs/imhex.nix')
-rw-r--r--pkgs/imhex.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/imhex.nix b/pkgs/imhex.nix
index 510f91c..164649d 100644
--- a/pkgs/imhex.nix
+++ b/pkgs/imhex.nix
@@ -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
];
- }
+}