Merge pull request #170951 from cab404/qFlipper102

qFlipper: 1.0.1 -> 1.0.2
main
Luke Granger-Brown 2 years ago committed by GitHub
commit a5c042b0de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      pkgs/tools/misc/qflipper/default.nix

@ -19,12 +19,14 @@
, qtquickcontrols2
, qtgraphicaleffects
, qtwayland
, nix-update-script
}:
let
version = "1.0.1";
pname = "qFlipper";
version = "1.0.2";
sha256 = "sha256-CJQOEUwYPNd4x+uBINrxeYVITtYrsEFaYLHQh2l12kA=";
timestamp = "99999999999";
commit = "nix-${version}";
hash = "sha256-vHBlrtQ06kjjXXGL/jSdpAPHgqb7Vn1c6jXZVXwxHPQ=";
udev_rules = ''
#Flipper Zero serial port
@ -35,15 +37,14 @@ let
in
mkDerivation {
pname = "qFlipper";
inherit version;
inherit pname version;
src = fetchFromGitHub {
owner = "flipperdevices";
repo = "qFlipper";
rev = version;
inherit hash;
fetchSubmodules = true;
inherit sha256;
};
nativeBuildInputs = [
@ -96,6 +97,10 @@ mkDerivation {
EOF
'';
passthru.updateScript = nix-update-script {
attrPath = pname;
};
meta = with lib; {
description = "Cross-platform desktop tool to manage your flipper device";
homepage = "https://flipperzero.one/";

Loading…
Cancel
Save