Merge branch 'asonix/changes' into asonix/downstream

This commit is contained in:
asonix 2023-09-21 14:56:51 -05:00
commit 4d82b91f87
4 changed files with 105 additions and 0 deletions

2
.gitignore vendored
View file

@ -63,3 +63,5 @@ yarn-debug.log
# Ignore Docker option files
docker-compose.override.yml
/.envrc
/.direnv

View file

@ -1,3 +1,4 @@
default: styles/application.scss
contrast: styles/contrast.scss
contrast-wider: styles/contrast-wider.scss
pop: styles/pop.scss

61
flake.lock Normal file
View file

@ -0,0 +1,61 @@
{
"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"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1695145219,
"narHash": "sha256-Eoe9IHbvmo5wEDeJXKFOpKUwxYJIOxKUesounVccNYk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5ba549eafcf3e33405e5f66decd1a72356632b96",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
},
"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
}

41
flake.nix Normal file
View file

@ -0,0 +1,41 @@
{
description = "pict-rs-proxy";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
(final: prev: {
nodejs = prev.nodejs_18;
postgresql = prev.postgresql_15;
ruby = prev.ruby_3_2;
})
];
};
in
{
packages = {
default = pkgs.hello;
};
devShell = with pkgs; mkShell {
nativeBuildInputs = [
icu
libidn
libz
nodejs
postgresql
ruby
yarn
];
};
});
}