diff options
| author | Fuwn <[email protected]> | 2024-09-14 04:42:19 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-14 04:42:19 -0700 |
| commit | e57ca4059a3b89f08f4c550e18ad4c8d424287ab (patch) | |
| tree | fb3f2dd260e441374788bf03e552a2aaa4f77166 /pkgs/t.nix | |
| parent | lib: refactor build-rust-package (diff) | |
| download | nixos-config-e57ca4059a3b89f08f4c550e18ad4c8d424287ab.tar.xz nixos-config-e57ca4059a3b89f08f4c550e18ad4c8d424287ab.zip | |
home: t
Diffstat (limited to 'pkgs/t.nix')
| -rw-r--r-- | pkgs/t.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/t.nix b/pkgs/t.nix new file mode 100644 index 0000000..923bb58 --- /dev/null +++ b/pkgs/t.nix @@ -0,0 +1,22 @@ +{ + lib, + rustPlatform, + fetchFromGitHub, +}: +let + buildRustPackage = import ../lib/build-rust-package.nix { + inherit lib rustPlatform fetchFromGitHub; + }; +in +buildRustPackage ( + with lib; + { + pname = "t"; + version = "30a0bf6e5aec20c40e1b0c96fe9c6e3521997ff3"; + githubOwner = "nixports"; + githubHash = "sha256-4xlo+WecV0wAHaHRN37HvEaKnUHIRBSMk6BWn7PAIPc="; + cargoHash = "sha256-olRytgRRCj9V+V96Q1Eb+JOGxFKhhd/1C2Ge4NXv86Q="; + maintainers = with maintainers; [ Fuwn ]; + license = licenses.mit; + } +) |