Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mystery3525 committed Jun 25, 2024
1 parent 45331c2 commit 0f05efa
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,18 @@ let
usbutils
xdg-user-dirs
];
versionMatches =
builtins.match ''
.*
readonly[[:blank:]]VERSION="([[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+)"
.*
'' (builtins.readFile ./quickemu);
in

stdenv.mkDerivation rec {
pname = "quickemu";
version = "4.9.4";
version = builtins.concatStringsSep "" versionMatches;

src = lib.cleanSource ./.;

postPatch = ''
Expand Down

0 comments on commit 0f05efa

Please sign in to comment.