fix: move fixes from repo to patch
This commit is contained in:
parent
8b4136e3d9
commit
9208515d0f
3 changed files with 29 additions and 17 deletions
|
@ -28,17 +28,17 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "pineflash";
|
pname = "pineflash";
|
||||||
version = "82605e4eeb48d25e59361ea42bcb01f02588b6aa";
|
version = "1cbe5547e19789e26faaef176c3d22a51e457e88";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Nydragon";
|
owner = "Spagett1";
|
||||||
repo = "PineFlash";
|
repo = "PineFlash";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-s/yUB0mqXDD+InlWW/cDuk63K/mNZp158CD99RmHZrY=";
|
hash = "sha256-Cw2P/CNP6hn44RogAtqlXXNlDygE+ax3oUZ6F2tlFBw=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-DuxKkC3+3Ynct0TAUNB8/O8b1/Cj4FoeUilxhYnSdwk=";
|
cargoHash = "sha256-x+7lqnv8UF1hcRkj4Uu7RCSDDx0vHOKumFfyRn6M/ao=";
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
curl
|
curl
|
||||||
|
@ -82,7 +82,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# remove when merged: https://github.com/Spagett1/pineflash/pull/86
|
# remove when merged: https://github.com/Spagett1/pineflash/pull/86
|
||||||
./fix-crash.patch
|
./fix-nix-issues.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
diff --git a/src/main.rs b/src/main.rs
|
|
||||||
index bcd4f0c..1395a73 100644
|
|
||||||
--- a/src/main.rs
|
|
||||||
+++ b/src/main.rs
|
|
||||||
@@ -529,6 +529,6 @@ fn main() {
|
|
||||||
}),
|
|
||||||
) {
|
|
||||||
Ok(_) => (),
|
|
||||||
- Err(error) => panic!("A massive error occured, not sure whats goin on here: \n {}"),
|
|
||||||
+ Err(error) => panic!("A massive error occured, not sure whats goin on here"),
|
|
||||||
}
|
|
||||||
}
|
|
24
pkgs/pineflash/fix-nix-issues.patch
Normal file
24
pkgs/pineflash/fix-nix-issues.patch
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
diff --git a/src/main.rs b/src/main.rs
|
||||||
|
index bcd4f0c..1395a73 100644
|
||||||
|
--- a/src/main.rs
|
||||||
|
+++ b/src/main.rs
|
||||||
|
@@ -529,6 +529,6 @@ fn main() {
|
||||||
|
}),
|
||||||
|
) {
|
||||||
|
Ok(_) => (),
|
||||||
|
- Err(error) => panic!("A massive error occured, not sure whats goin on here: \n {}"),
|
||||||
|
+ Err(error) => panic!("A massive error occured, not sure whats goin on here"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
diff --git a/src/submodules/flash.rs b/src/submodules/flash.rs
|
||||||
|
index 5b224b2..cfdc861 100644
|
||||||
|
--- a/src/submodules/flash.rs
|
||||||
|
+++ b/src/submodules/flash.rs
|
||||||
|
@@ -183,7 +183,6 @@ impl Flasher {
|
||||||
|
|
||||||
|
#[cfg(target_os = "linux")]
|
||||||
|
let command = Command::new("pkexec")
|
||||||
|
- .env("PATH", "/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:linux")
|
||||||
|
.arg(blisppath)
|
||||||
|
.arg("write")
|
||||||
|
.arg("-c")
|
Loading…
Add table
Reference in a new issue