1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-06 04:36:05 +02:00

Merge pull request #32 from g0dm0d/main

fix inputs (rust, purescript)
This commit is contained in:
Luc Perkins 2024-01-18 13:14:46 -03:00 committed by GitHub
commit 825eafd19a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
description = "A Nix-flake-based Purescript development environment";
inputs = {
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
easy-purescript-nix = {
url = "github:justinwoo/easy-purescript-nix";
flake = false;

View File

@ -2,7 +2,7 @@
description = "A Nix-flake-based Rust development environment";
inputs = {
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";