fuzzel: 1.9.2 -> 1.10.0

- Switch to finalAttrs pattern
This commit is contained in:
Ashish SHUKLA 2024-04-12 07:36:53 +00:00
parent 1042fd8b14
commit 2a16ac4174
No known key found for this signature in database
1 changed files with 6 additions and 6 deletions

View File

@ -22,16 +22,16 @@
assert svgSupport -> enableCairo;
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "fuzzel";
version = "1.9.2";
version = "1.10.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = pname;
rev = version;
hash = "sha256-X1P/ghX97KCQcrNk44Cy2IAGuZ8DDwHBWzh1AHLDvd4=";
repo = "fuzzel";
rev = finalAttrs.version;
hash = "sha256-4wTwsjnmPsg+kc05izeyXilzDO0LpD3g3PRBqgLPK2I=";
};
depsBuildBuild = [
@ -73,4 +73,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ fionera polykernel rodrgz ];
platforms = with platforms; linux;
};
}
})