File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 4848 cargo-nextest = fancy . rustOverrides super . cargo-nextest ;
4949 csview = fancy . rustOverrides super . csview ;
5050 just = fancy . rustOverrides super . just ;
51+ kopium = fancy . rustOverrides ( self . callPackage ./nix/kopium {
52+ rev = "c4931d13043994813c9949d90bf3e0fbac949148" ; # 0.22.5
53+ hash = "sha256-zYmb+HxwEKEnzdqAzvki5M+NA2fGP174pRkU6B4WmZI=" ;
54+ } ) ;
5155 frr-agent = fancy . rustOverrides (
5256 self . callPackage ./nix/frr-agent {
5357 rev = versions . frr-agent . rev ;
Original file line number Diff line number Diff line change 1+ {
2+ rustPlatform ,
3+ fetchFromGitHub ,
4+ rev ,
5+ hash ,
6+ } :
7+ rustPlatform . buildRustPackage ( finalAttrs : {
8+ pname = "kopium" ;
9+ version = rev ;
10+ src = fetchFromGitHub {
11+ owner = "kube-rs" ;
12+ repo = finalAttrs . pname ;
13+ inherit rev hash ;
14+ } ;
15+ cargoLock . lockFile = "${ finalAttrs . src } /Cargo.lock" ;
16+ cargoHash = hash ;
17+ } )
You can’t perform that action at this time.
0 commit comments