summaryrefslogtreecommitdiff
path: root/pkgs/t.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-14 04:42:19 -0700
committerFuwn <[email protected]>2024-09-14 04:42:19 -0700
commite57ca4059a3b89f08f4c550e18ad4c8d424287ab (patch)
treefb3f2dd260e441374788bf03e552a2aaa4f77166 /pkgs/t.nix
parentlib: refactor build-rust-package (diff)
downloadnixos-config-e57ca4059a3b89f08f4c550e18ad4c8d424287ab.tar.xz
nixos-config-e57ca4059a3b89f08f4c550e18ad4c8d424287ab.zip
home: t
Diffstat (limited to 'pkgs/t.nix')
-rw-r--r--pkgs/t.nix22
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;
+ }
+)