kazumi: 1.4.3 -> 1.4.4 (#358300)

This commit is contained in:
Donovan Glover 2024-11-24 22:05:37 +00:00 committed by GitHub
commit dd7b1eb241
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 32 additions and 10 deletions

View File

@ -12,17 +12,18 @@
at-spi2-atk,
}:
let
version = "1.4.3";
src = fetchFromGitHub {
owner = "Predidit";
repo = "Kazumi";
rev = version;
hash = "sha256-pLrpDTGA4qdTqxkNWmChknMklE/0Chd3NhysaUqpUfs=";
};
version = "1.4.4";
in
flutter.buildFlutterApplication {
pname = "kazumi";
inherit version src;
inherit version;
src = fetchFromGitHub {
owner = "Predidit";
repo = "Kazumi";
rev = "refs/tags/${version}";
hash = "sha256-p5eFabIa04io180tBNCMRs2pX7HU8b+PdyBwZohmKR8=";
};
pubspecLock = lib.importJSON ./pubspec.lock.json;

View File

@ -1517,6 +1517,16 @@
"source": "hosted",
"version": "1.2.0"
},
"styled_text": {
"dependency": "direct main",
"description": {
"name": "styled_text",
"sha256": "fd624172cf629751b4f171dd0ecf9acf02a06df3f8a81bb56c0caa4f1df706c3",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "8.1.0"
},
"synchronized": {
"dependency": "transitive",
"description": {
@ -1918,6 +1928,16 @@
"source": "hosted",
"version": "6.5.0"
},
"xmlstream": {
"dependency": "transitive",
"description": {
"name": "xmlstream",
"sha256": "cfc14e3f256997897df9481ae630d94c2d85ada5187ebeb868bb1aabc2c977b4",
"url": "https://pub.dev"
},
"source": "hosted",
"version": "1.1.1"
},
"xpath_selector": {
"dependency": "direct main",
"description": {

View File

@ -1,11 +1,10 @@
{
stdenv,
mdk-sdk,
}:
{ version, src, ... }:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "flutter_volume_controller";
inherit version src;
inherit (src) passthru;
@ -18,8 +17,10 @@ stdenv.mkDerivation rec {
installPhase = ''
runHook preInstall
mkdir $out
cp -r ./* $out/
runHook postInstall
'';
}