diff options
| author | Fuwn <[email protected]> | 2024-09-14 03:53:59 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-14 03:53:59 -0700 |
| commit | e46742c57278d2633ab4c237b778d62ab7be9567 (patch) | |
| tree | 214303c8d08fc8ee7c0c6c9e09ea8458bb8cdb57 /pkgs/git-sumi.nix | |
| parent | cpu: remove duplicate microcode key (diff) | |
| download | nixos-config-e46742c57278d2633ab4c237b778d62ab7be9567.tar.xz nixos-config-e46742c57278d2633ab4c237b778d62ab7be9567.zip | |
lib: refactor build-rust-package
Diffstat (limited to 'pkgs/git-sumi.nix')
| -rw-r--r-- | pkgs/git-sumi.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/git-sumi.nix b/pkgs/git-sumi.nix index 504f1d4..e58fcab 100644 --- a/pkgs/git-sumi.nix +++ b/pkgs/git-sumi.nix @@ -4,9 +4,11 @@ fetchFromGitHub, }: let - rustUtils = import ../lib/rust-utils.nix { inherit lib rustPlatform fetchFromGitHub; }; + buildRustPackage = import ../lib/build-rust-package.nix { + inherit lib rustPlatform fetchFromGitHub; + }; in -rustUtils.mkRustPackage { +buildRustPackage { pname = "git-sumi"; version = "3822ce390a2a04eec4513f83586f775e59f3cbf1"; githubOwner = "welpo"; |