aboutsummaryrefslogtreecommitdiffstats
path: root/default.nix
blob: 15762fb7800d7da28ccb4fc8ea581ae75db395e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, lib, pkgs }:

with lib;

let
  cfg = config.blossom;
in
{
  options.blossom = {
    enable = mkEnableOption "blossom";
  }

  config = 
}
pkgs.rustPlatform.buildRustPackage rec {
  pname = "blossom";
  version = "1.0.0";

  cargoLock.lockFile = /etc/nixos/blossom/Cargo.lock;

  src = pkgs.lib.cleanSource ./.;
}