mirror of
https://github.com/MagicBOTAlex/nixos-server.git
synced 2026-02-04 05:39:18 +01:00
24 lines
623 B
Nix
24 lines
623 B
Nix
{ 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 ]; }
|
|
|