nicer versioning for easier updates i think

This commit is contained in:
twoneis 2025-03-23 22:01:12 +01:00
parent 0733f4d2d1
commit 12bc14657e
8 changed files with 68 additions and 54 deletions

View file

@ -2,18 +2,17 @@
stdenvNoCC,
fetchurl,
unzip,
version,
}:
stdenvNoCC.mkDerivation {
pname = "blobfox";
version = "2020.09.04";
version = version.version;
src = fetchurl {
url = "https://volpeon.ink/emojis/blobfox/blobfox.zip";
hash = "sha256-b+mSyEdVjXldW/UQJaWy2cn0aF/NAd/RBRoW/K0v2bY=";
hash = version.hash;
};
sourceRoot = ".";
nativeBuildInputs = [unzip];
installPhase = ''