chore: init repo

This commit is contained in:
Nydragon 2024-10-14 01:30:46 +02:00
commit 78dda5354d
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 106 additions and 0 deletions

0
README.md Normal file
View file

75
flake.lock generated Normal file
View file

@ -0,0 +1,75 @@
{
"nodes": {
"naersk": {
"inputs": {
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1721727458,
"narHash": "sha256-r/xppY958gmZ4oTfLiHN0ZGuQ+RSTijDblVgVLFi1mw=",
"owner": "nix-community",
"repo": "naersk",
"rev": "3fb418eaf352498f6b6c30592e3beb63df42ef11",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "naersk",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 0,
"narHash": "sha256-HP89HZOT0ReIbI7IJZJQoJgxvB2Tn28V6XS3MNKnfLs=",
"path": "/nix/store/lryfc8mhk1czqsa421di2y5nzz5c3b8m-source",
"type": "path"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1728492678,
"narHash": "sha256-9UTxR8eukdg+XZeHgxW5hQA9fIKHsKCdOIUycTryeVw=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "5633bcff0c6162b9e4b5f1264264611e950c8ec7",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"naersk": "naersk",
"nixpkgs": "nixpkgs_2",
"rustypasteRepo": "rustypasteRepo"
}
},
"rustypasteRepo": {
"flake": false,
"locked": {
"lastModified": 1728306155,
"narHash": "sha256-mgB/arakSQu7mC/n7Oal/rsHdVxCD4NEgX7TAsCrCMI=",
"owner": "orhun",
"repo": "rustypaste",
"rev": "561025fca47e63a4356cf8e41669ab823f033717",
"type": "github"
},
"original": {
"owner": "orhun",
"repo": "rustypaste",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

31
flake.nix Normal file
View file

@ -0,0 +1,31 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
naersk.url = "github:nix-community/naersk";
rustypasteRepo = {
url = "github:orhun/rustypaste";
flake = false;
};
};
outputs =
{
self,
nixpkgs,
naersk,
rustypasteRepo,
}:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
naersk' = pkgs.callPackage naersk { };
rustypaste = naersk'.buildPackage { src = rustypasteRepo; };
in
{
packages.${system} = {
default = rustypaste;
inherit rustypaste;
};
overlays.default = final: prev: { inherit (self.packages.${prev.system}) rustypaste; };
};
}