From 06930c0b50130451c8845fd5647eaacf7ad4d562 Mon Sep 17 00:00:00 2001 From: Danila Danko Date: Sat, 20 Jan 2024 11:15:21 +0300 Subject: [PATCH] add: pins --- pins/devshell/flake.lock | 80 +++++++++++++++ pins/devshell/flake.nix | 1 + pins/dream2nix/flake.lock | 108 ++++++++++++++++++++ pins/dream2nix/flake.nix | 1 + pins/flake-compat/flake.lock | 24 +++++ pins/flake-compat/flake.nix | 1 + pins/flake-utils/flake.lock | 44 ++++++++ pins/flake-utils/flake.nix | 1 + pins/lima/flake.lock | 44 ++++++++ pins/lima/flake.nix | 1 + pins/nix-vscode-extensions/flake.lock | 97 ++++++++++++++++++ pins/nix-vscode-extensions/flake.nix | 1 + pins/nix2container/flake.lock | 78 +++++++++++++++ pins/nix2container/flake.nix | 1 + pins/nixpkgs/flake.lock | 27 +++++ pins/nixpkgs/flake.nix | 1 + pins/poetry2nix/flake.lock | 138 ++++++++++++++++++++++++++ pins/poetry2nix/flake.nix | 1 + pins/purescript-overlay/flake.lock | 84 ++++++++++++++++ pins/purescript-overlay/flake.nix | 1 + pins/rust-overlay/flake.lock | 79 +++++++++++++++ pins/rust-overlay/flake.nix | 1 + pins/slimlock/flake.lock | 45 +++++++++ pins/slimlock/flake.nix | 1 + pins/terrafix/flake.lock | 44 ++++++++ pins/terrafix/flake.nix | 1 + 26 files changed, 905 insertions(+) create mode 100644 pins/devshell/flake.lock create mode 100644 pins/devshell/flake.nix create mode 100644 pins/dream2nix/flake.lock create mode 100644 pins/dream2nix/flake.nix create mode 100644 pins/flake-compat/flake.lock create mode 100644 pins/flake-compat/flake.nix create mode 100644 pins/flake-utils/flake.lock create mode 100644 pins/flake-utils/flake.nix create mode 100644 pins/lima/flake.lock create mode 100644 pins/lima/flake.nix create mode 100644 pins/nix-vscode-extensions/flake.lock create mode 100644 pins/nix-vscode-extensions/flake.nix create mode 100644 pins/nix2container/flake.lock create mode 100644 pins/nix2container/flake.nix create mode 100644 pins/nixpkgs/flake.lock create mode 100644 pins/nixpkgs/flake.nix create mode 100644 pins/poetry2nix/flake.lock create mode 100644 pins/poetry2nix/flake.nix create mode 100644 pins/purescript-overlay/flake.lock create mode 100644 pins/purescript-overlay/flake.nix create mode 100644 pins/rust-overlay/flake.lock create mode 100644 pins/rust-overlay/flake.nix create mode 100644 pins/slimlock/flake.lock create mode 100644 pins/slimlock/flake.nix create mode 100644 pins/terrafix/flake.lock create mode 100644 pins/terrafix/flake.nix diff --git a/pins/devshell/flake.lock b/pins/devshell/flake.lock new file mode 100644 index 00000000..00bf3420 --- /dev/null +++ b/pins/devshell/flake.lock @@ -0,0 +1,80 @@ +{ + "nodes": { + "devshell": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1705634019, + "narHash": "sha256-HHrEr99Y094RWMxzsi3mm+Y8YkkXYydemHVRXDeW4w4=", + "owner": "deemp", + "repo": "devshell", + "rev": "c6f33b92c7023e1e38e8108174e64e4d736fc5ee", + "type": "github" + }, + "original": { + "owner": "deemp", + "ref": "add-interpolate-menu", + "repo": "devshell", + "type": "github" + } + }, + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1701680307, + "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1704161960, + "narHash": "sha256-QGua89Pmq+FBAro8NriTuoO/wNaUtugt29/qqA8zeeM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "63143ac2c9186be6d9da6035fa22620018c85932", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "devshell": "devshell" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/devshell/flake.nix b/pins/devshell/flake.nix new file mode 100644 index 00000000..64af8f2d --- /dev/null +++ b/pins/devshell/flake.nix @@ -0,0 +1 @@ +{ inputs.devshell.url = "github:deemp/devshell/add-interpolate-menu"; outputs = inputs: inputs.devshell; } diff --git a/pins/dream2nix/flake.lock b/pins/dream2nix/flake.lock new file mode 100644 index 00000000..7c33f0c6 --- /dev/null +++ b/pins/dream2nix/flake.lock @@ -0,0 +1,108 @@ +{ + "nodes": { + "dream2nix": { + "inputs": { + "nixpkgs": "nixpkgs", + "purescript-overlay": "purescript-overlay", + "pyproject-nix": "pyproject-nix" + }, + "locked": { + "lastModified": 1705716305, + "narHash": "sha256-f5KBgSD40X1L1hRH7iX8S9g1qeIU13Iqnr30A6HdmkU=", + "owner": "nix-community", + "repo": "dream2nix", + "rev": "774019d486a6c550edf669c40269acd526e27885", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "dream2nix", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1702272962, + "narHash": "sha256-D+zHwkwPc6oYQ4G3A1HuadopqRwUY/JkMwHz1YF7j4Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "e97b3e4186bcadf0ef1b6be22b8558eab1cdeb5d", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "purescript-overlay": { + "inputs": { + "nixpkgs": [ + "dream2nix", + "nixpkgs" + ], + "slimlock": "slimlock" + }, + "locked": { + "lastModified": 1696022621, + "narHash": "sha256-eMjFmsj2G1E0Q5XiibUNgFjTiSz0GxIeSSzzVdoN730=", + "owner": "thomashoneyman", + "repo": "purescript-overlay", + "rev": "047c7933abd6da8aa239904422e22d190ce55ead", + "type": "github" + }, + "original": { + "owner": "thomashoneyman", + "repo": "purescript-overlay", + "type": "github" + } + }, + "pyproject-nix": { + "flake": false, + "locked": { + "lastModified": 1702448246, + "narHash": "sha256-hFg5s/hoJFv7tDpiGvEvXP0UfFvFEDgTdyHIjDVHu1I=", + "owner": "davhau", + "repo": "pyproject.nix", + "rev": "5a06a2697b228c04dd2f35659b4b659ca74f7aeb", + "type": "github" + }, + "original": { + "owner": "davhau", + "ref": "dream2nix", + "repo": "pyproject.nix", + "type": "github" + } + }, + "root": { + "inputs": { + "dream2nix": "dream2nix" + } + }, + "slimlock": { + "inputs": { + "nixpkgs": [ + "dream2nix", + "purescript-overlay", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1688610262, + "narHash": "sha256-Wg0ViDotFWGWqKIQzyYCgayeH8s4U1OZcTiWTQYdAp4=", + "owner": "thomashoneyman", + "repo": "slimlock", + "rev": "b5c6cdcaf636ebbebd0a1f32520929394493f1a6", + "type": "github" + }, + "original": { + "owner": "thomashoneyman", + "repo": "slimlock", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/dream2nix/flake.nix b/pins/dream2nix/flake.nix new file mode 100644 index 00000000..64cdcdef --- /dev/null +++ b/pins/dream2nix/flake.nix @@ -0,0 +1 @@ +{ inputs.dream2nix.url = "github:nix-community/dream2nix"; outputs = inputs: inputs.dream2nix; } diff --git a/pins/flake-compat/flake.lock b/pins/flake-compat/flake.lock new file mode 100644 index 00000000..73f80e58 --- /dev/null +++ b/pins/flake-compat/flake.lock @@ -0,0 +1,24 @@ +{ + "nodes": { + "flake-compat": { + "locked": { + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "revCount": 57, + "type": "tarball", + "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.0.1/018afb31-abd1-7bff-a5e4-cff7e18efb7a/source.tar.gz" + }, + "original": { + "type": "tarball", + "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz" + } + }, + "root": { + "inputs": { + "flake-compat": "flake-compat" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/flake-compat/flake.nix b/pins/flake-compat/flake.nix new file mode 100644 index 00000000..dd07d70c --- /dev/null +++ b/pins/flake-compat/flake.nix @@ -0,0 +1 @@ +{ inputs.flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"; outputs = inputs: { }; } diff --git a/pins/flake-utils/flake.lock b/pins/flake-utils/flake.lock new file mode 100644 index 00000000..8a19a9cb --- /dev/null +++ b/pins/flake-utils/flake.lock @@ -0,0 +1,44 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-utils": "flake-utils" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/flake-utils/flake.nix b/pins/flake-utils/flake.nix new file mode 100644 index 00000000..d7ffcc46 --- /dev/null +++ b/pins/flake-utils/flake.nix @@ -0,0 +1 @@ +{ inputs.flake-utils.url = "github:numtide/flake-utils"; outputs = inputs: inputs.flake-utils; } diff --git a/pins/lima/flake.lock b/pins/lima/flake.lock new file mode 100644 index 00000000..5d87883b --- /dev/null +++ b/pins/lima/flake.lock @@ -0,0 +1,44 @@ +{ + "nodes": { + "flakes": { + "locked": { + "lastModified": 1696514961, + "narHash": "sha256-6V9skmHuk6AajrFPIBolCPIM5JBmnwquYT415BTtbSg=", + "owner": "deemp", + "repo": "flakes", + "rev": "004f8374a77dcefe6a4c4a42eb136fc4e9b26827", + "type": "github" + }, + "original": { + "owner": "deemp", + "repo": "flakes", + "type": "github" + } + }, + "lima": { + "inputs": { + "flakes": "flakes" + }, + "locked": { + "lastModified": 1696552781, + "narHash": "sha256-9unhE2yQZ8Loq4HhG480VfGlZXnWySQ+/3jtwo5yP00=", + "owner": "deemp", + "repo": "lima", + "rev": "b75bce703a2c1ea4f70dd0ae6e0b47d984a905b6", + "type": "github" + }, + "original": { + "owner": "deemp", + "repo": "lima", + "type": "github" + } + }, + "root": { + "inputs": { + "lima": "lima" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/lima/flake.nix b/pins/lima/flake.nix new file mode 100644 index 00000000..e71556cf --- /dev/null +++ b/pins/lima/flake.nix @@ -0,0 +1 @@ +{ inputs.lima.url = "github:deemp/lima"; outputs = inputs: inputs.lima; } diff --git a/pins/nix-vscode-extensions/flake.lock b/pins/nix-vscode-extensions/flake.lock new file mode 100644 index 00000000..c6daaf2c --- /dev/null +++ b/pins/nix-vscode-extensions/flake.lock @@ -0,0 +1,97 @@ +{ + "nodes": { + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1673956053, + "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1681202837, + "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "cfacdce06f30d2b68473a46042957675eebb3401", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nix-vscode-extensions": { + "inputs": { + "flake-compat": "flake-compat", + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1704503947, + "narHash": "sha256-B4craBlUT91T1PkOoNHrwaX8D/laljpseyp5d7NMbW8=", + "owner": "nix-community", + "repo": "nix-vscode-extensions", + "rev": "fd9bf8bcfde5f555c7765f4c56043a08b23de957", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "nix-vscode-extensions", + "rev": "fd9bf8bcfde5f555c7765f4c56043a08b23de957", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1684570954, + "narHash": "sha256-FX5y4Sm87RWwfu9PI71XFvuRpZLowh00FQpIJ1WfXqE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3005f20ce0aaa58169cdee57c8aa12e5f1b6e1b3", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nix-vscode-extensions": "nix-vscode-extensions" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/nix-vscode-extensions/flake.nix b/pins/nix-vscode-extensions/flake.nix new file mode 100644 index 00000000..c375995c --- /dev/null +++ b/pins/nix-vscode-extensions/flake.nix @@ -0,0 +1 @@ +{ inputs.nix-vscode-extensions.url = "github:nix-community/nix-vscode-extensions/fd9bf8bcfde5f555c7765f4c56043a08b23de957"; outputs = inputs: inputs.nix-vscode-extensions; } diff --git a/pins/nix2container/flake.lock b/pins/nix2container/flake.lock new file mode 100644 index 00000000..e92b6c81 --- /dev/null +++ b/pins/nix2container/flake.lock @@ -0,0 +1,78 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1694529238, + "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nix2container": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1702556796, + "narHash": "sha256-Kb/zFxccRms61PPLTFhb4RKCPwNv+gERZ/0FxSZrx+g=", + "owner": "deemp", + "repo": "nix2container", + "rev": "076a2e16cec5e5e03502df4391f045b21b9d63fb", + "type": "github" + }, + "original": { + "owner": "deemp", + "repo": "nix2container", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1697269602, + "narHash": "sha256-dSzV7Ud+JH4DPVD9od53EgDrxUVQOcSj4KGjggCDVJI=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9cb540e9c1910d74a7e10736277f6eb9dff51c81", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "nix2container": "nix2container" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/nix2container/flake.nix b/pins/nix2container/flake.nix new file mode 100644 index 00000000..95126d45 --- /dev/null +++ b/pins/nix2container/flake.nix @@ -0,0 +1 @@ +{ inputs.nix2container.url = "github:deemp/nix2container"; outputs = inputs: inputs.nix2container; } diff --git a/pins/nixpkgs/flake.lock b/pins/nixpkgs/flake.lock new file mode 100644 index 00000000..bb23f842 --- /dev/null +++ b/pins/nixpkgs/flake.lock @@ -0,0 +1,27 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1704321053, + "narHash": "sha256-r8KVHIxSA9hB4KNGyAf2ltEJXpDELX5Q1sIXpWAf9Tg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "efc960b6d6a6498c23868f4ba59fcb8bb51c9861", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "efc960b6d6a6498c23868f4ba59fcb8bb51c9861", + "type": "github" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/nixpkgs/flake.nix b/pins/nixpkgs/flake.nix new file mode 100644 index 00000000..27d5da62 --- /dev/null +++ b/pins/nixpkgs/flake.nix @@ -0,0 +1 @@ +{ inputs.nixpkgs.url = "github:NixOS/nixpkgs/efc960b6d6a6498c23868f4ba59fcb8bb51c9861"; outputs = inputs: inputs.nixpkgs; } diff --git a/pins/poetry2nix/flake.lock b/pins/poetry2nix/flake.lock new file mode 100644 index 00000000..029bdb35 --- /dev/null +++ b/pins/poetry2nix/flake.lock @@ -0,0 +1,138 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1694529238, + "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nix-github-actions": { + "inputs": { + "nixpkgs": [ + "poetry2nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1698974481, + "narHash": "sha256-yPncV9Ohdz1zPZxYHQf47S8S0VrnhV7nNhCawY46hDA=", + "owner": "nix-community", + "repo": "nix-github-actions", + "rev": "4bb5e752616262457bc7ca5882192a564c0472d2", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "nix-github-actions", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1699838902, + "narHash": "sha256-gtaGIer0Fg7QUvsUFsKIjrns32lhnd+o6FvIyokzcKQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "6c986b681d6b35affcc4eda42db63595ab01860e", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "master", + "repo": "nixpkgs", + "type": "github" + } + }, + "poetry2nix": { + "inputs": { + "flake-utils": "flake-utils", + "nix-github-actions": "nix-github-actions", + "nixpkgs": "nixpkgs", + "systems": "systems_2", + "treefmt-nix": "treefmt-nix" + }, + "locked": { + "lastModified": 1705060653, + "narHash": "sha256-puYyylgrBS4AFAHeyVRTjTUVD8DZdecJfymWJe7H438=", + "owner": "nix-community", + "repo": "poetry2nix", + "rev": "e0b44e9e2d3aa855d1dd77b06f067cd0e0c3860d", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "poetry2nix", + "type": "github" + } + }, + "root": { + "inputs": { + "poetry2nix": "poetry2nix" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_2": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "id": "systems", + "type": "indirect" + } + }, + "treefmt-nix": { + "inputs": { + "nixpkgs": [ + "poetry2nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1699786194, + "narHash": "sha256-3h3EH1FXQkIeAuzaWB+nK0XK54uSD46pp+dMD3gAcB4=", + "owner": "numtide", + "repo": "treefmt-nix", + "rev": "e82f32aa7f06bbbd56d7b12186d555223dc399d1", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "treefmt-nix", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/poetry2nix/flake.nix b/pins/poetry2nix/flake.nix new file mode 100644 index 00000000..78f37f77 --- /dev/null +++ b/pins/poetry2nix/flake.nix @@ -0,0 +1 @@ +{ inputs.poetry2nix.url = "github:nix-community/poetry2nix"; outputs = inputs: inputs.poetry2nix; } diff --git a/pins/purescript-overlay/flake.lock b/pins/purescript-overlay/flake.lock new file mode 100644 index 00000000..7f41a302 --- /dev/null +++ b/pins/purescript-overlay/flake.lock @@ -0,0 +1,84 @@ +{ + "nodes": { + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1702882221, + "narHash": "sha256-L/uOrBqkGsa45EvQk4DLq/aR6JeomW+7Mwe0mC/dVUM=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "25fef6e30d8ad48f47a8411ccfe986d8baed8a15", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "release-23.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "purescript-overlay": { + "inputs": { + "flake-compat": "flake-compat", + "nixpkgs": "nixpkgs", + "slimlock": "slimlock" + }, + "locked": { + "lastModified": 1705416298, + "narHash": "sha256-xJLRhG4VmDsyZ1QD087VKOapYwTV2R+7iV+HqAFKB98=", + "owner": "thomashoneyman", + "repo": "purescript-overlay", + "rev": "4d9f42384efcfc934bbd818b05da3f3f50b5b991", + "type": "github" + }, + "original": { + "owner": "thomashoneyman", + "repo": "purescript-overlay", + "type": "github" + } + }, + "root": { + "inputs": { + "purescript-overlay": "purescript-overlay" + } + }, + "slimlock": { + "inputs": { + "nixpkgs": [ + "purescript-overlay", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1688756706, + "narHash": "sha256-xzkkMv3neJJJ89zo3o2ojp7nFeaZc2G0fYwNXNJRFlo=", + "owner": "thomashoneyman", + "repo": "slimlock", + "rev": "cf72723f59e2340d24881fd7bf61cb113b4c407c", + "type": "github" + }, + "original": { + "owner": "thomashoneyman", + "repo": "slimlock", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/purescript-overlay/flake.nix b/pins/purescript-overlay/flake.nix new file mode 100644 index 00000000..a429caf0 --- /dev/null +++ b/pins/purescript-overlay/flake.nix @@ -0,0 +1 @@ +{ inputs.purescript-overlay.url = "github:thomashoneyman/purescript-overlay"; outputs = inputs: inputs.purescript-overlay; } diff --git a/pins/rust-overlay/flake.lock b/pins/rust-overlay/flake.lock new file mode 100644 index 00000000..bece3035 --- /dev/null +++ b/pins/rust-overlay/flake.lock @@ -0,0 +1,79 @@ +{ + "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1681202837, + "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "cfacdce06f30d2b68473a46042957675eebb3401", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1681358109, + "narHash": "sha256-eKyxW4OohHQx9Urxi7TQlFBTDWII+F+x2hklDOQPB50=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "96ba1c52e54e74c3197f4d43026b3f3d92e83ff9", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "rust-overlay": "rust-overlay" + } + }, + "rust-overlay": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1705716951, + "narHash": "sha256-Yp4EkRWoXX57a7hDyx6xJDTtl0h1WRFdRlp9SejPPOQ=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "612b6a974cb921fe7aa4cafd54f4f5f899b19173", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/rust-overlay/flake.nix b/pins/rust-overlay/flake.nix new file mode 100644 index 00000000..721dfa32 --- /dev/null +++ b/pins/rust-overlay/flake.nix @@ -0,0 +1 @@ +{ inputs.rust-overlay.url = "github:oxalica/rust-overlay"; outputs = inputs: inputs.rust-overlay; } diff --git a/pins/slimlock/flake.lock b/pins/slimlock/flake.lock new file mode 100644 index 00000000..b04ee88f --- /dev/null +++ b/pins/slimlock/flake.lock @@ -0,0 +1,45 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1688601033, + "narHash": "sha256-5CNmOffPU7aiTyZqLhXRFOwoAbZeFRM6Dk6au2q0uEs=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "876975f68fd5527427243ef94db83cc934932833", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "release-23.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "slimlock": "slimlock" + } + }, + "slimlock": { + "inputs": { + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1702828829, + "narHash": "sha256-tL/ThLAk5JgYdKXy3MIZYnDavemjpemF17dVgbfbYM8=", + "owner": "thomashoneyman", + "repo": "slimlock", + "rev": "a7ce81f35d236a5e58bce30e34825013e19ffade", + "type": "github" + }, + "original": { + "owner": "thomashoneyman", + "repo": "slimlock", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/slimlock/flake.nix b/pins/slimlock/flake.nix new file mode 100644 index 00000000..361c3d7d --- /dev/null +++ b/pins/slimlock/flake.nix @@ -0,0 +1 @@ +{ inputs.slimlock.url = "github:thomashoneyman/slimlock"; outputs = inputs: inputs.slimlock; } diff --git a/pins/terrafix/flake.lock b/pins/terrafix/flake.lock new file mode 100644 index 00000000..d0ef1fcb --- /dev/null +++ b/pins/terrafix/flake.lock @@ -0,0 +1,44 @@ +{ + "nodes": { + "flakes": { + "locked": { + "lastModified": 1696514961, + "narHash": "sha256-6V9skmHuk6AajrFPIBolCPIM5JBmnwquYT415BTtbSg=", + "owner": "deemp", + "repo": "flakes", + "rev": "004f8374a77dcefe6a4c4a42eb136fc4e9b26827", + "type": "github" + }, + "original": { + "owner": "deemp", + "repo": "flakes", + "type": "github" + } + }, + "root": { + "inputs": { + "terrafix": "terrafix" + } + }, + "terrafix": { + "inputs": { + "flakes": "flakes" + }, + "locked": { + "lastModified": 1703334368, + "narHash": "sha256-nKYy3evVgHJW1sLPhQdkoA3UcIq6z1W6T9XDcKc2nSw=", + "owner": "deemp", + "repo": "terrafix", + "rev": "49512d4e899809ff87e7feaac64882861ca7af1a", + "type": "github" + }, + "original": { + "owner": "deemp", + "repo": "terrafix", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/pins/terrafix/flake.nix b/pins/terrafix/flake.nix new file mode 100644 index 00000000..81a91c7c --- /dev/null +++ b/pins/terrafix/flake.nix @@ -0,0 +1 @@ +{ inputs.terrafix.url = "github:deemp/terrafix"; outputs = inputs: inputs.terrafix; }