qFlipper: 1.0.1 -> 1.0.2
Also checked and enabled updateScript
This commit is contained in:
parent
834b2caf0a
commit
5808d9aeb8
1 changed files with 10 additions and 5 deletions
|
@ -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…
Reference in a new issue