modprobed-db: refactor

this shouldn't create any rebuilds
This commit is contained in:
quantenzitrone
2026-02-07 09:48:52 +01:00
parent 535affd956
commit 28961506a3
+4 -6
View File
@@ -8,17 +8,15 @@
bash,
installShellFiles,
}:
let
stdenv.mkDerivation (finalAttrs: {
pname = "modprobed-db";
version = "2.48";
in
stdenv.mkDerivation {
inherit pname version;
src = fetchFromGitHub {
owner = "graysky2";
repo = "modprobed-db";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-rMkPBRg0QluMmSCAWSvET7rS/A2aUL6H31KKoZ6NTEs=";
};
@@ -55,4 +53,4 @@ stdenv.mkDerivation {
mainProgram = "modprobed-db";
platforms = lib.platforms.linux;
};
}
})