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

Loading…
Cancel
Save