From 78dda5354d93432e92733d862beb6d406d0e0a2a Mon Sep 17 00:00:00 2001 From: Nydragon Date: Mon, 14 Oct 2024 01:30:46 +0200 Subject: [PATCH] chore: init repo --- README.md | 0 flake.lock | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ flake.nix | 31 ++++++++++++++++++++++ 3 files changed, 106 insertions(+) create mode 100644 README.md create mode 100644 flake.lock create mode 100644 flake.nix diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..2041d58 --- /dev/null +++ b/flake.lock @@ -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 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..09bb8cb --- /dev/null +++ b/flake.nix @@ -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; }; + }; +}