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

27 lines
703 B
Nix
Raw Normal View History

2020-07-18 16:59:44 +00:00
{ stdenv, fetchFromGitLab, rustPlatform, pkg-config, dbus }:
rustPlatform.buildRustPackage rec {
pname = "sd-switch";
2020-07-28 23:12:48 +00:00
version = "0.2.0";
2020-07-18 16:59:44 +00:00
src = fetchFromGitLab {
owner = "rycee";
repo = pname;
rev = version;
2020-07-28 23:12:48 +00:00
sha256 = "1bhks4ma3sn95bsszs6lj9cwfr8zgmja0hqfp8xr5iq77ww2p6k3";
2020-07-18 16:59:44 +00:00
};
2020-07-28 23:12:48 +00:00
cargoSha256 = "0lskxakzh3yji0rzk8jcfz1sv4j19b5kmdsaj7401m5w84s1cbjw";
2020-07-18 16:59:44 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus ];
meta = with stdenv.lib; {
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;
};
}