Basic repo cleanup

This commit is contained in:
Luc Perkins 2022-07-28 23:20:46 +02:00
parent 41744cc024
commit 20e8cf8675
No known key found for this signature in database
GPG key ID: 4F102D0C16E232F2
21 changed files with 175 additions and 39 deletions

1
gleam/.envrc Normal file
View file

@ -0,0 +1 @@
use flake .

42
gleam/flake.lock generated Normal file
View file

@ -0,0 +1,42 @@
{
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1656928814,
"narHash": "sha256-RIFfgBuKz6Hp89yRr7+NR5tzIAbn52h8vT6vXkYjZoM=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "7e2a3b3dfd9af950a856d66b0a7d01e3c18aa249",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1657982260,
"narHash": "sha256-k9hwUbpgBmIipH2ZkRS5BpqLKbQYLiB0ewI+e9HHK0I=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2d2bf29c02bfd0fc0cafb613c6b49d3e6c0d6361",
"type": "github"
},
"original": {
"owner": "NixOS",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

30
gleam/flake.nix Normal file
View file

@ -0,0 +1,30 @@
{
description = "A Nix-flake-based Gleam development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
gleamPkg = pkgs.gleam;
inherit (pkgs) mkShell;
in {
devShells = {
default = pkgs.mkShell {
nativeBuildInputs = [
gleamPkg
];
shellHook = ''
${gleamPkg}/bin/gleam --version
'';
};
};
}
);
}