update meta

This commit is contained in:
2025-12-23 14:39:51 -06:00
parent ed055366ca
commit 81fcf22b44

View File

@@ -1,30 +1,22 @@
# This flake was initially generated by fh, the CLI for FlakeHub (version 0.1.22)
{ {
# A helpful description of your flake
description = "swaytreesave flake"; description = "swaytreesave flake";
# Flake inputs
inputs = { inputs = {
flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*"; flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*";
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*"; nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*";
}; };
# Flake outputs that other flakes can use
outputs = { self, flake-schemas, nixpkgs }: outputs = { self, flake-schemas, nixpkgs }:
let let
# Helpers for producing system-specific outputs
supportedSystems = [ "x86_64-linux" ]; supportedSystems = [ "x86_64-linux" ];
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f { forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
}); });
in { in {
# Schemas tell Nix about the structure of your flake's outputs
schemas = flake-schemas.schemas; schemas = flake-schemas.schemas;
# Development environments
devShells = forEachSupportedSystem ({ pkgs }: { devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell { default = pkgs.mkShell {
# Pinned packages available in the environment
packages = with pkgs; [ packages = with pkgs; [
curl curl
git git
@@ -46,18 +38,17 @@
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-aAJBbauOiFERABF13hMhxyvRBzcx5c1F+vbm/U+JS8o="; sha256 = "sha256-aAJBbauOiFERABF13hMhxyvRBzcx5c1F+vbm/U+JS8o=";
}; };
in pkgs.rustPlatform.buildRustPackage { in pkgs.rustPlatform.buildRustPackage {
inherit pname version src; inherit pname version src;
cargoLock = { lockFile = "${src}/Cargo.lock"; }; cargoLock = { lockFile = "${src}/Cargo.lock"; };
meta = { meta = {
description = "The Discord music status that works with any media player"; description = "CLI to save and load your compositors tree/layout";
mainProgram = "musicpresence"; mainProgram = "swaytreesave";
homepage = "https://github.com/ungive/discord-music-presence"; homepage = "https://github.com/fabienjuif/swaytreesave";
maintainers = [ "wymillerlinux" ]; maintainers = [ "wymillerlinux" ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
changelog = "https://github.com/ungive/discord-music-presence/releases/tag/v${version}"; changelog = "https://github.com/fabienjuif/swaytreesave/releases/tag/v${version}";
}; };
}; };
}); });