nixpkgs/pkgs/os-specific/linux/sd-switch/default.nix

27 lines
693 B
Nix
Raw Normal View History

{ lib, fetchFromGitLab, rustPlatform, pkg-config, dbus }:
2020-07-18 16:59:44 +00:00
rustPlatform.buildRustPackage rec {
pname = "sd-switch";
2021-06-26 12:15:49 +00:00
version = "0.2.3";
2020-07-18 16:59:44 +00:00
src = fetchFromGitLab {
owner = "rycee";
repo = pname;
rev = version;
2021-06-26 12:15:49 +00:00
sha256 = "12h2d7v7pdz7b0hrna64561kf35nbpwb2kzxa791xk8raxc2b72k";
2020-07-18 16:59:44 +00:00
};
2021-06-26 12:15:49 +00:00
cargoSha256 = "12ny3cir2nxzrmf4vwq6sgc35dbpq88hav53xqdp44rigdf4vzbs";
2020-07-18 16:59:44 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus ];
meta = with lib; {
2020-07-18 16:59:44 +00:00
description = "A systemd unit switcher for Home Manager";
homepage = "https://gitlab.com/rycee/sd-switch";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ rycee ];
platforms = platforms.linux;
};
}