Merge pull request #306490 from felixsinger/pkgs/flashprog/update

flashprog: 1.0.1 -> 1.1
This commit is contained in:
Leona Maroni 2024-05-06 23:27:46 +02:00 committed by GitHub
commit c215fb18dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,14 +12,14 @@
, withGpio ? stdenv.isLinux
}:
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "flashprog";
version = "1.0.1";
version = "1.1";
src = fetchgit {
url = "https://review.sourcearcade.org/flashprog";
rev = "2ca11f9a4101ea230081d448ab2b570425b7f0bd";
hash = "sha256-pm9g9iOJAKnzzY9couzt8RmqZFbIpKcO++zsUJ9o49U=";
rev = "v${finalAttrs.version}";
hash = "sha256-CLwaGxVOo8FJaWfvrJ2hAm7XonP5nHT6YTsaw7scKCM=";
};
nativeBuildInputs = [
@ -60,4 +60,4 @@ stdenv.mkDerivation {
platforms = platforms.all;
mainProgram = "flashprog";
};
}
})