mirror of
https://github.com/MagicBOTAlex/nixos-server.git
synced 2026-02-04 05:39:18 +01:00
kubernetes vm building
This commit is contained in:
parent
4e2d73d546
commit
376912c631
15 changed files with 319 additions and 15 deletions
24
modules/oscd.nix
Normal file
24
modules/oscd.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
oscd = pkgs.rustPlatform.buildRustPackage rec {
|
||||
pname = "oscd";
|
||||
version = "0.1.10";
|
||||
|
||||
src = pkgs.fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-PMn7PB7Mt+YrpV0bohTIAVvBOZMigV7WdJjwNEGpbgs=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-K6eyRyBdab3/7024LNTh5SETH1gMZjB9viFzzWLdYBc=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "OSC debugger (CLI)";
|
||||
homepage = "https://crates.io/crates/oscd";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
in
|
||||
{ environment.systemPackages = with pkgs; [ oscd ]; }
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue