Merge pull request #8 from auxolotl/feat/nixdoc

nixdoc: init at 3.0.2
This commit is contained in:
Ruby Iris Juric 2024-05-14 10:58:02 +10:00 committed by GitHub
commit 823445c069
Failed to generate hash of commit
3 changed files with 37 additions and 29 deletions

View file

@ -1,26 +1,6 @@
{ {
"nodes": { "nodes": {
"nixpkgs": { "root": {}
"locked": {
"lastModified": 1715447595,
"narHash": "sha256-VsVAUQOj/cS1LCOmMjAGeRksXIAdPnFIjCQ0XLkCsT0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "062ca2a9370a27a35c524dc82d540e6e9824b652",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
}, },
"root": "root", "root": "root",
"version": 7 "version": 7

View file

@ -1,18 +1,11 @@
{ {
inputs = { outputs = { self, ... }:
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs =
{ self, nixpkgs, ... }:
let let
forAllSystems = self.lib.genAttrs self.lib.systems.flakeExposed; forAllSystems = self.lib.genAttrs self.lib.systems.flakeExposed;
in in
{ {
lib = import ./lib; lib = import ./lib;
nixPackages = forAllSystems (system: nixpkgs.legacyPackages.${system});
auxPackages = forAllSystems (system: auxPackages = forAllSystems (system:
( (
let requiredVersion = import ./lib/minver.nix; in let requiredVersion = import ./lib/minver.nix; in
@ -42,6 +35,8 @@
) )
); );
legacyPackages = forAllSystems (system: import ./. { inherit system; });
# To test, run nix build .#tests.x86_64-linux.release # To test, run nix build .#tests.x86_64-linux.release
tests = forAllSystems (system: { tests = forAllSystems (system: {
systems = import ./lib/tests/systems.nix; systems = import ./lib/tests/systems.nix;

View file

@ -0,0 +1,33 @@
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
darwin,
}: let
version = "3.0.2";
in
rustPlatform.buildRustPackage {
pname = "nixdoc";
inherit version;
src = fetchFromGitHub {
owner = "nix-community";
repo = "nixdoc";
rev = "v${version}";
sha256 = "sha256-V3MAvbdYk3DL064UYcJE9HmwfQBwpMxVXWiAKX6honA=";
};
cargoHash = "sha256-RFxTjLiJCEc42Mb8rcayOFHkYk2GfpgsO3+hAaRwHgs=";
buildInputs = lib.optionals stdenv.isDarwin [darwin.Security];
meta = {
description = "Generate documentation for Nix functions";
mainProgram = "nixdoc";
homepage = "https://github.com/nix-community/nixdoc";
license = lib.licenses.gpl3;
# maintainers = with lib.maintainers; [ infinisil hsjobeki ];
platforms = lib.platforms.unix;
};
}