blob: 923bb58e8c8b14158a4bee58e8a0ec7beb367606 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}
)
|