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 17:59:44 +01:00
rustPlatform.buildRustPackage rec {
pname = "sd-switch";
2021-04-22 15:37:56 +01:00
version = "0.2.1";
2020-07-18 17:59:44 +01:00
src = fetchFromGitLab {
owner = "rycee";
repo = pname;
rev = version;
2021-04-22 15:37:56 +01:00
sha256 = "0sg1y8lb2pnll3408fbqp65acys31mrlzsqfrwm4nvbkayf0jcv3";
2020-07-18 17:59:44 +01:00
};
2021-04-22 15:37:56 +01:00
cargoSha256 = "16yb61wihg06i2h9vjqcsjqkjjpmxyv4df22i25034gkcgb20xcn";
2020-07-18 17:59:44 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus ];
meta = with lib; {
2020-07-18 17:59:44 +01: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;
};
}