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