Dendritic Nix - Community-driven Nix distribution based on the Dendritic pattern.
1module Data exposing (..)
2
3
4type alias Repository =
5 { name : String
6 , url : String
7 , trees : List Tree
8 }
9
10
11type alias SelectedRepos =
12 { anySelected : Bool, repos : List Repository }
13
14
15type alias Tree =
16 { name : String
17 , aspects : List AspectInfo
18 }
19
20
21type alias AspectInfo =
22 { aspect : String
23 , class : String
24 , files : List String
25 }