17 lines
346 B
Nix
17 lines
346 B
Nix
|
{
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
rust = {
|
||
|
url = "git+https://git.stranger.systems/nix/Rust";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
};
|
||
|
description = "Stranger Site";
|
||
|
|
||
|
outputs = { self, nixpkgs, rust }:
|
||
|
rust.single {
|
||
|
crateName = "stranger-site";
|
||
|
src = ./.;
|
||
|
};
|
||
|
}
|