feat: inital commit

This commit is contained in:
uku 2024-07-26 12:28:30 +02:00
commit c613bba4b8
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
8 changed files with 135 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
# rust
/target
# nix
result
/.direnv

7
Cargo.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "uklient"
version = "0.1.0"

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "uklient"
version = "0.1.0"
edition = "2021"
[dependencies]

27
derivation.nix Normal file
View file

@ -0,0 +1,27 @@
{
lib,
rustPlatform,
mold-wrapped,
self,
}:
rustPlatform.buildRustPackage {
pname = "uklient";
version = self.shortRev or self.dirtyShortRev or "dirty";
src = self;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [mold-wrapped];
RUSTFLAGS = "-C link-arg=-fuse-ld=mold";
doCheck = false;
meta = with lib; {
mainProgram = "uklient";
description = "now better than ever before";
homepage = "https://git.uku3lig.net/uku/uklient";
license = licenses.mit;
platforms = platforms.unix;
};
}

48
flake.lock Normal file
View file

@ -0,0 +1,48 @@
{
"nodes": {
"flake-parts": {
"inputs": {
"nixpkgs-lib": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1719994518,
"narHash": "sha256-pQMhCCHyQGRzdfAkdJ4cIWiw+JNuWsTX7f0ZYSyz0VY=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "9227223f6d922fee3c7b190b2cc238a99527bbb7",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "flake-parts",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1721743106,
"narHash": "sha256-adRZhFpBTnHiK3XIELA3IBaApz70HwCYfv7xNrHjebA=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "dc14ed91132ee3a26255d01d8fd0c1f5bff27b2f",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-parts": "flake-parts",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

37
flake.nix Normal file
View file

@ -0,0 +1,37 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
};
outputs = {
self,
flake-parts,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
perSystem = {
lib,
pkgs,
self',
...
}: {
packages.default = pkgs.callPackage ./derivation.nix {inherit self;};
devShells.default = with pkgs;
mkShell {
packages = [clippy rustfmt rust-analyzer];
inputsFrom = [self'.packages.default];
RUST_SRC_PATH = "${pkgs.rustPlatform.rustLibSrc}";
};
formatter = pkgs.alejandra;
};
};
}

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}