forked from auxolotl/core
commit
823445c069
22
flake.lock
22
flake.lock
|
@ -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
|
||||||
|
|
11
flake.nix
11
flake.nix
|
@ -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;
|
||||||
|
|
33
pkgs/by-name/ni/nixdoc/default.nix
Normal file
33
pkgs/by-name/ni/nixdoc/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue