2022-08-29 15:17:29 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::fmt;
|
2021-08-17 08:55:08 +00:00
|
|
|
use std::marker::PhantomData;
|
|
|
|
use std::{path::PathBuf, str::FromStr};
|
|
|
|
|
2021-11-23 12:58:55 +00:00
|
|
|
use clap::arg_enum;
|
2021-12-26 15:03:09 +00:00
|
|
|
use log::warn;
|
2021-08-17 08:55:08 +00:00
|
|
|
use serde::de::{self, MapAccess, Visitor};
|
|
|
|
use serde::{Deserialize, Deserializer, Serialize, Serializer};
|
|
|
|
use serde_json::Value;
|
|
|
|
|
2021-12-26 15:03:09 +00:00
|
|
|
use super::pandoc::PandocExt;
|
2022-08-29 15:17:29 +00:00
|
|
|
use super::prettyprint::print_value;
|
2021-08-17 08:55:08 +00:00
|
|
|
use super::utility::{Flatten, OneOrMany};
|
|
|
|
|
|
|
|
/// Holds information about a specific derivation
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
2022-10-28 13:49:15 +00:00
|
|
|
#[serde(tag = "entry_type", rename_all = "lowercase")]
|
2021-08-17 08:55:08 +00:00
|
|
|
pub enum FlakeEntry {
|
|
|
|
/// A package as it may be defined in a flake
|
|
|
|
///
|
|
|
|
/// Note: As flakes do not enforce any particular structure to be necessarily
|
|
|
|
/// present, the data represented is an idealization that _should_ match in
|
|
|
|
/// most cases and is open to extension.
|
|
|
|
Package {
|
|
|
|
attribute_name: String,
|
|
|
|
name: String,
|
|
|
|
version: String,
|
2022-12-06 22:30:58 +00:00
|
|
|
platforms: Vec<String>,
|
2021-08-17 08:55:08 +00:00
|
|
|
outputs: Vec<String>,
|
2022-03-27 13:52:54 +00:00
|
|
|
default_output: String,
|
2021-08-17 08:55:08 +00:00
|
|
|
description: Option<String>,
|
2023-02-05 09:24:26 +00:00
|
|
|
#[serde(rename = "longDescription")]
|
|
|
|
long_description: Option<String>,
|
2022-10-28 13:49:15 +00:00
|
|
|
license: Option<OneOrMany<StringOrStruct<License>>>,
|
2021-08-17 08:55:08 +00:00
|
|
|
},
|
|
|
|
/// An "application" that can be called using nix run <..>
|
|
|
|
App {
|
|
|
|
bin: Option<PathBuf>,
|
|
|
|
attribute_name: String,
|
2022-12-06 22:30:58 +00:00
|
|
|
platforms: Vec<String>,
|
2021-08-17 08:55:08 +00:00
|
|
|
app_type: Option<String>,
|
|
|
|
},
|
|
|
|
/// an option defined in a module of a flake
|
|
|
|
Option(NixOption),
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The representation of an option that is part of some module and can be used
|
|
|
|
/// in some nixos configuration
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub struct NixOption {
|
|
|
|
/// Location of the defining module(s)
|
|
|
|
pub declarations: Vec<String>,
|
|
|
|
|
2022-10-28 13:49:15 +00:00
|
|
|
pub description: Option<DocString>,
|
2021-08-17 08:55:08 +00:00
|
|
|
pub name: String,
|
2021-12-26 15:03:09 +00:00
|
|
|
|
2021-08-17 08:55:08 +00:00
|
|
|
#[serde(rename = "type")]
|
|
|
|
/// Nix generated description of the options type
|
|
|
|
pub option_type: Option<String>,
|
2022-04-07 21:57:35 +00:00
|
|
|
#[serde(deserialize_with = "optional_field", default)]
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2021-12-26 15:03:09 +00:00
|
|
|
pub default: Option<DocValue>,
|
2022-04-07 21:57:35 +00:00
|
|
|
#[serde(deserialize_with = "optional_field", default)]
|
|
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
2021-12-26 15:03:09 +00:00
|
|
|
pub example: Option<DocValue>,
|
2021-08-17 08:55:08 +00:00
|
|
|
|
2022-01-06 14:42:31 +00:00
|
|
|
/// If defined in a flake, contains defining flake and optionally a module
|
|
|
|
pub flake: Option<ModulePath>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
|
|
#[serde(untagged)]
|
|
|
|
pub enum ModulePath {
|
|
|
|
/// A module taken from <flake>.nixosModule
|
|
|
|
/// JSON representation is a list, therefore use a 1-Tuple as representation
|
|
|
|
DefaultModule((String,)),
|
|
|
|
/// A module taken from <flake>.nixosModules.<name>
|
|
|
|
NamedModule((String, String)),
|
2021-08-17 08:55:08 +00:00
|
|
|
}
|
|
|
|
|
2022-10-28 13:49:15 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize)]
|
|
|
|
#[serde(untagged)]
|
|
|
|
pub enum DocString {
|
|
|
|
DocFormat(DocFormat),
|
|
|
|
String(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize)]
|
|
|
|
#[serde(tag = "_type", content = "text")]
|
|
|
|
pub enum DocFormat {
|
|
|
|
#[serde(rename = "mdDoc")]
|
|
|
|
MarkdownDoc(String),
|
|
|
|
}
|
|
|
|
|
2021-12-26 15:03:09 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize)]
|
|
|
|
#[serde(untagged)]
|
|
|
|
pub enum DocValue {
|
|
|
|
Literal(Literal),
|
|
|
|
Value(Value),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Deserialize)]
|
|
|
|
#[serde(tag = "_type", content = "text")]
|
|
|
|
pub enum Literal {
|
2022-10-28 13:49:15 +00:00
|
|
|
#[serde(rename = "literalExpression", alias = "literalExample")]
|
2022-04-07 21:57:35 +00:00
|
|
|
LiteralExpression(String),
|
2021-12-26 15:03:09 +00:00
|
|
|
#[serde(rename = "literalDocBook")]
|
|
|
|
LiteralDocBook(String),
|
2022-10-28 13:49:15 +00:00
|
|
|
#[serde(rename = "literalMD")]
|
|
|
|
LiteralMarkdown(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Serialize for DocString {
|
|
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
|
|
where
|
|
|
|
S: Serializer,
|
|
|
|
{
|
|
|
|
match self {
|
|
|
|
DocString::String(db) => {
|
|
|
|
serializer.serialize_str(&db.render_docbook().unwrap_or_else(|e| {
|
|
|
|
warn!("Could not render DocBook content: {}", e);
|
|
|
|
db.to_owned()
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
DocString::DocFormat(DocFormat::MarkdownDoc(md)) => {
|
|
|
|
serializer.serialize_str(&md.render_markdown().unwrap_or_else(|e| {
|
|
|
|
warn!("Could not render Markdown content: {}", e);
|
|
|
|
md.to_owned()
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-26 15:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Serialize for DocValue {
|
|
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
|
|
where
|
|
|
|
S: Serializer,
|
|
|
|
{
|
|
|
|
match self {
|
2022-10-28 13:49:15 +00:00
|
|
|
DocValue::Literal(Literal::LiteralExpression(s)) => serializer.serialize_str(&s),
|
|
|
|
DocValue::Literal(Literal::LiteralDocBook(db)) => {
|
|
|
|
serializer.serialize_str(&db.render_docbook().unwrap_or_else(|e| {
|
|
|
|
warn!("Could not render DocBook content: {}", e);
|
|
|
|
db.to_owned()
|
|
|
|
}))
|
2021-12-26 15:03:09 +00:00
|
|
|
}
|
2022-10-28 13:49:15 +00:00
|
|
|
DocValue::Literal(Literal::LiteralMarkdown(md)) => {
|
|
|
|
serializer.serialize_str(&md.render_markdown().unwrap_or_else(|e| {
|
|
|
|
warn!("Could not render Markdown content: {}", e);
|
|
|
|
md.to_owned()
|
|
|
|
}))
|
2021-12-26 15:03:09 +00:00
|
|
|
}
|
|
|
|
DocValue::Value(v) => serializer.serialize_str(&print_value(v.to_owned())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 08:55:08 +00:00
|
|
|
/// Package as defined in nixpkgs
|
|
|
|
/// These packages usually have a "more" homogenic structure that is given by
|
|
|
|
/// nixpkgs
|
|
|
|
/// note: This is the parsing module that deals with nested input. A flattened,
|
|
|
|
/// unified representation can be found in [crate::data::export::Derivation]
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub struct Package {
|
|
|
|
pub pname: String,
|
|
|
|
pub version: String,
|
2022-03-16 09:43:20 +00:00
|
|
|
#[serde(default)]
|
2022-03-27 13:52:54 +00:00
|
|
|
pub outputs: HashMap<String, Option<String>>,
|
|
|
|
#[serde(rename = "outputName", default)]
|
|
|
|
pub default_output: Option<String>,
|
2021-08-17 08:55:08 +00:00
|
|
|
pub system: String,
|
2022-03-16 09:43:20 +00:00
|
|
|
#[serde(default)]
|
2021-08-17 08:55:08 +00:00
|
|
|
pub meta: Meta,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The nixpkgs output lists attribute names as keys of a map.
|
|
|
|
/// Name and Package definition are combined using this struct
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub enum NixpkgsEntry {
|
2023-02-07 15:31:17 +00:00
|
|
|
Derivation {
|
|
|
|
attribute: String,
|
|
|
|
package: Package,
|
|
|
|
programs: Vec<String>,
|
|
|
|
},
|
2021-08-17 08:55:08 +00:00
|
|
|
Option(NixOption),
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Most information about packages in nixpkgs is contained in the meta key
|
|
|
|
/// This struct represents a subset of that metadata
|
2022-03-16 09:43:20 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Default, Serialize, Deserialize)]
|
2021-08-17 08:55:08 +00:00
|
|
|
pub struct Meta {
|
|
|
|
pub license: Option<OneOrMany<StringOrStruct<License>>>,
|
|
|
|
pub maintainers: Option<Flatten<Maintainer>>,
|
|
|
|
pub homepage: Option<OneOrMany<String>>,
|
2023-01-27 17:37:52 +00:00
|
|
|
pub platforms: Option<Platforms>,
|
2022-12-06 22:30:58 +00:00
|
|
|
#[serde(rename = "badPlatforms")]
|
2023-01-27 17:37:52 +00:00
|
|
|
pub bad_platforms: Option<Platforms>,
|
2021-08-17 08:55:08 +00:00
|
|
|
pub position: Option<String>,
|
|
|
|
pub description: Option<String>,
|
|
|
|
#[serde(rename = "longDescription")]
|
|
|
|
pub long_description: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
2021-12-18 13:45:08 +00:00
|
|
|
#[serde(untagged)]
|
|
|
|
pub enum Maintainer {
|
|
|
|
Full {
|
|
|
|
name: Option<String>,
|
|
|
|
github: Option<String>,
|
|
|
|
email: Option<String>,
|
|
|
|
},
|
|
|
|
Simple(String),
|
2021-08-17 08:55:08 +00:00
|
|
|
}
|
|
|
|
|
2021-11-23 12:58:55 +00:00
|
|
|
arg_enum! {
|
|
|
|
/// The type of derivation (placed in packages.<system> or apps.<system>)
|
|
|
|
/// Used to command the extraction script
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub enum Kind {
|
|
|
|
App,
|
|
|
|
Package,
|
|
|
|
Option,
|
|
|
|
All,
|
|
|
|
}
|
2021-08-17 08:55:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<str> for Kind {
|
|
|
|
fn as_ref(&self) -> &str {
|
|
|
|
match self {
|
2021-11-23 12:58:55 +00:00
|
|
|
Kind::App => "apps",
|
2021-08-17 08:55:08 +00:00
|
|
|
Kind::Package => "packages",
|
|
|
|
Kind::Option => "options",
|
|
|
|
Kind::All => "all",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Kind {
|
|
|
|
fn default() -> Self {
|
|
|
|
Kind::All
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize)]
|
|
|
|
pub struct StringOrStruct<T>(pub T);
|
|
|
|
|
|
|
|
impl<'de, T> Deserialize<'de> for StringOrStruct<T>
|
|
|
|
where
|
|
|
|
T: Deserialize<'de> + FromStr<Err = anyhow::Error>,
|
|
|
|
{
|
|
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
|
|
where
|
|
|
|
D: Deserializer<'de>,
|
|
|
|
{
|
|
|
|
Ok(StringOrStruct(string_or_struct(deserializer)?))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-27 17:37:52 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
|
|
#[serde(untagged)]
|
|
|
|
pub enum Platform {
|
|
|
|
System(String),
|
|
|
|
Pattern {}, // TODO how should those be displayed?
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Default, Serialize, Deserialize)]
|
|
|
|
pub struct Platforms(Flatten<Platform>);
|
|
|
|
|
|
|
|
impl Platforms {
|
|
|
|
// A bit of abstract nonsense: what we really want is
|
|
|
|
// into_iter : Platforms → ∃ (I : Iterator<String>). I
|
|
|
|
// however Rust makes this annoying to write: we would either have to pick a
|
|
|
|
// concrete iterator type or use something like Box<dyn Iterator<Item = String>>.
|
|
|
|
// Instead, we can use the dual Church-encoded form of that existential type:
|
|
|
|
// ? : Platforms → ∀ B. (∀ (I : Iterator<String>). I → B) → B
|
|
|
|
// ...which is exactly the type of collect! (think about what FromIterator means)
|
|
|
|
pub fn collect<B: std::iter::FromIterator<String>>(self) -> B {
|
|
|
|
self.0
|
|
|
|
.flatten()
|
|
|
|
.into_iter()
|
|
|
|
.flat_map(|p| match p {
|
|
|
|
Platform::System(s) => Some(s),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 08:55:08 +00:00
|
|
|
/// Different representations of the licence attribute
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
|
|
#[serde(untagged)]
|
|
|
|
pub enum License {
|
|
|
|
None {
|
|
|
|
#[serde(skip_serializing)]
|
|
|
|
license: (),
|
|
|
|
},
|
|
|
|
Simple {
|
|
|
|
license: String,
|
|
|
|
},
|
2022-08-29 15:17:29 +00:00
|
|
|
#[allow(non_snake_case)]
|
2021-08-17 08:55:08 +00:00
|
|
|
Full {
|
2022-12-02 12:46:35 +00:00
|
|
|
fullName: Option<String>,
|
|
|
|
shortName: Option<String>,
|
2021-08-17 08:55:08 +00:00
|
|
|
url: Option<String>,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for License {
|
|
|
|
fn default() -> Self {
|
|
|
|
License::None { license: () }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromStr for License {
|
|
|
|
// This implementation of `from_str` can never fail, so use the impossible
|
|
|
|
// `Void` type as the error type.
|
|
|
|
type Err = anyhow::Error;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
|
|
Ok(License::Simple {
|
|
|
|
license: s.to_string(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Deserialization helper that parses an item using either serde or fromString
|
|
|
|
fn string_or_struct<'de, T, D>(deserializer: D) -> Result<T, D::Error>
|
|
|
|
where
|
|
|
|
T: Deserialize<'de> + FromStr<Err = anyhow::Error>,
|
|
|
|
D: Deserializer<'de>,
|
|
|
|
{
|
|
|
|
// This is a Visitor that forwards string types to T's `FromStr` impl and
|
|
|
|
// forwards map types to T's `Deserialize` impl. The `PhantomData` is to
|
|
|
|
// keep the compiler from complaining about T being an unused generic type
|
|
|
|
// parameter. We need T in order to know the Value type for the Visitor
|
|
|
|
// impl.
|
|
|
|
struct StringOrStruct<T>(PhantomData<fn() -> T>);
|
|
|
|
|
|
|
|
impl<'de, T> Visitor<'de> for StringOrStruct<T>
|
|
|
|
where
|
|
|
|
T: Deserialize<'de> + FromStr<Err = anyhow::Error>,
|
|
|
|
{
|
|
|
|
type Value = T;
|
|
|
|
|
|
|
|
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
formatter.write_str("string or map")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_str<E>(self, value: &str) -> Result<T, E>
|
|
|
|
where
|
|
|
|
E: de::Error,
|
|
|
|
{
|
|
|
|
Ok(FromStr::from_str(value).unwrap())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_map<M>(self, map: M) -> Result<T, M::Error>
|
|
|
|
where
|
|
|
|
M: MapAccess<'de>,
|
|
|
|
{
|
|
|
|
// `MapAccessDeserializer` is a wrapper that turns a `MapAccess`
|
|
|
|
// into a `Deserializer`, allowing it to be used as the input to T's
|
|
|
|
// `Deserialize` implementation. T then deserializes itself using
|
|
|
|
// the entries from the map visitor.
|
|
|
|
Deserialize::deserialize(de::value::MapAccessDeserializer::new(map))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
deserializer.deserialize_any(StringOrStruct(PhantomData))
|
|
|
|
}
|
|
|
|
|
2022-04-07 21:57:35 +00:00
|
|
|
/// Deserializes an Option<T> by passing `null` along to T's deserializer instead
|
|
|
|
/// of treating it as a missing field
|
|
|
|
fn optional_field<'de, T, D>(deserializer: D) -> Result<Option<T>, D::Error>
|
|
|
|
where
|
|
|
|
D: Deserializer<'de>,
|
|
|
|
T: Deserialize<'de>,
|
|
|
|
{
|
|
|
|
Ok(Some(T::deserialize(deserializer)?))
|
|
|
|
}
|
|
|
|
|
2021-08-17 08:55:08 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nixpkgs_deserialize() {
|
|
|
|
let json = r#"
|
|
|
|
{
|
|
|
|
"nixpkgs-unstable._0verkill": {
|
|
|
|
"name": "0verkill-unstable-2011-01-13",
|
|
|
|
"pname": "0verkill-unstable",
|
|
|
|
"version": "2011-01-13",
|
|
|
|
"system": "x86_64-darwin",
|
|
|
|
"meta": {
|
|
|
|
"available": true,
|
|
|
|
"broken": false,
|
|
|
|
"description": "ASCII-ART bloody 2D action deathmatch-like game",
|
|
|
|
"homepage": "https://github.com/hackndev/0verkill",
|
|
|
|
"insecure": false,
|
|
|
|
"license": {
|
|
|
|
"fullName": "GNU General Public License v2.0 only",
|
|
|
|
"shortName": "gpl2Only",
|
|
|
|
"spdxId": "GPL-2.0-only",
|
|
|
|
"url": "https://spdx.org/licenses/GPL-2.0-only.html"
|
|
|
|
},
|
|
|
|
"maintainers": [
|
|
|
|
{
|
|
|
|
"email": "torres.anderson.85@protonmail.com",
|
|
|
|
"github": "AndersonTorres",
|
|
|
|
"githubId": 5954806,
|
|
|
|
"name": "Anderson Torres"
|
2021-12-18 13:45:08 +00:00
|
|
|
},
|
|
|
|
"Fred Flintstone"
|
2021-08-17 08:55:08 +00:00
|
|
|
],
|
|
|
|
"name": "0verkill-unstable-2011-01-13",
|
|
|
|
"outputsToInstall": [
|
|
|
|
"out"
|
|
|
|
],
|
|
|
|
"platforms": [
|
|
|
|
"powerpc64-linux",
|
|
|
|
"powerpc64le-linux",
|
|
|
|
"riscv32-linux",
|
2023-01-27 17:37:52 +00:00
|
|
|
"riscv64-linux",
|
|
|
|
{}
|
2021-08-17 08:55:08 +00:00
|
|
|
],
|
|
|
|
"position": "/nix/store/97lxf2n6zip41j5flbv6b0928mxv9za8-nixpkgs-unstable-21.03pre268853.d9c6f13e13f/nixpkgs-unstable/pkgs/games/0verkill/default.nix:34",
|
|
|
|
"unfree": false,
|
|
|
|
"unsupported": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#;
|
|
|
|
|
|
|
|
let map: HashMap<String, Package> = serde_json::from_str(json).unwrap();
|
|
|
|
|
|
|
|
let _: Vec<NixpkgsEntry> = map
|
|
|
|
.into_iter()
|
2023-02-07 15:31:17 +00:00
|
|
|
.map(|(attribute, package)| NixpkgsEntry::Derivation {
|
|
|
|
attribute,
|
|
|
|
package,
|
|
|
|
programs: Vec::new(),
|
|
|
|
})
|
2021-08-17 08:55:08 +00:00
|
|
|
.collect();
|
|
|
|
}
|
2021-12-26 15:03:09 +00:00
|
|
|
|
2022-01-06 14:42:31 +00:00
|
|
|
#[test]
|
|
|
|
fn test_flake_option() {
|
|
|
|
let json = r#"
|
|
|
|
{
|
|
|
|
"declarations": [],
|
|
|
|
"name": "test-option",
|
|
|
|
"flake": ["flake", "module"]
|
|
|
|
}
|
|
|
|
"#;
|
|
|
|
|
|
|
|
serde_json::from_str::<NixOption>(json).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_flake_option_default_module() {
|
|
|
|
let json = r#"
|
|
|
|
{
|
|
|
|
"declarations": [],
|
|
|
|
"name": "test-option",
|
|
|
|
"flake": ["flake"]
|
|
|
|
}
|
|
|
|
"#;
|
|
|
|
|
|
|
|
serde_json::from_str::<NixOption>(json).unwrap();
|
|
|
|
}
|
|
|
|
|
2021-12-26 15:03:09 +00:00
|
|
|
#[test]
|
|
|
|
fn test_option_parsing() {}
|
2021-08-17 08:55:08 +00:00
|
|
|
}
|