mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ stdenv
|
|
, lib
|
|
, rustPlatform
|
|
, cargo
|
|
, rustc
|
|
, pkg-config
|
|
, desktop-file-utils
|
|
, appstream-glib
|
|
, wrapGAppsHook4
|
|
, meson
|
|
, ninja
|
|
, libadwaita
|
|
, gtk4
|
|
, tuxedo-rs
|
|
}:
|
|
let
|
|
src = tuxedo-rs.src;
|
|
sourceRoot = "${src.name}/tailor_gui";
|
|
pname = "tailor_gui";
|
|
version = "0.2.3";
|
|
in
|
|
stdenv.mkDerivation {
|
|
|
|
inherit src sourceRoot pname version;
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src sourceRoot;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-jcjq0uls28V8Ka2CMM8oOQmZZRUr9eEQeVtW56AmU28=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
pkg-config
|
|
desktop-file-utils
|
|
appstream-glib
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
cargo
|
|
rustc
|
|
meson
|
|
ninja
|
|
libadwaita
|
|
gtk4
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Rust GUI for interacting with hardware from TUXEDO Computers";
|
|
mainProgram = "tailor_gui";
|
|
longDescription = ''
|
|
An alternative to the TUXEDO Control Center (https://www.tuxedocomputers.com/en/TUXEDO-Control-Center.tuxedo),
|
|
written in Rust.
|
|
'';
|
|
homepage = "https://github.com/AaronErhardt/tuxedo-rs";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ mrcjkb xaverdh ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|