tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ripasso-cursive: switch to `finalAttrs` pattern
Pol Dellaiera
6 months ago
f2e2e99e
6a7d91d5
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ri
ripasso-cursive
package.nix
+3
-3
pkgs/by-name/ri/ripasso-cursive/package.nix
···
19
19
nix-update-script,
20
20
}:
21
21
22
22
-
rustPlatform.buildRustPackage rec {
22
22
+
rustPlatform.buildRustPackage (finalAttrs: {
23
23
version = "0.7.0";
24
24
pname = "ripasso-cursive";
25
25
26
26
src = fetchFromGitHub {
27
27
owner = "cortex";
28
28
repo = "ripasso";
29
29
-
tag = "release-${version}";
29
29
+
tag = "release-${finalAttrs.version}";
30
30
hash = "sha256-j98X/+UTea4lCtFfMpClnfcKlvxm4DpOujLc0xc3VUY=";
31
31
};
32
32
···
81
81
maintainers = with lib.maintainers; [ sgo ];
82
82
platforms = lib.platforms.unix;
83
83
};
84
84
-
}
84
84
+
})