summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-08-15 19:56:16 -0500
committerGitHub <noreply@github.com>2018-08-15 19:56:16 -0500
commit3d6448250f1e70dbafc760e17881395929510799 (patch)
tree786665d21ccfffba0f916e1ee22c27bb6a160870 /pkgs/tools
parentb8566965df20390a6c0aefe3e261d18965675599 (diff)
parent4b8bb6a65aee0caf563833096925e6f6daedc9c1 (diff)
downloadnixpkgs-3d6448250f1e70dbafc760e17881395929510799.tar
nixpkgs-3d6448250f1e70dbafc760e17881395929510799.tar.gz
nixpkgs-3d6448250f1e70dbafc760e17881395929510799.tar.bz2
nixpkgs-3d6448250f1e70dbafc760e17881395929510799.tar.lz
nixpkgs-3d6448250f1e70dbafc760e17881395929510799.tar.xz
nixpkgs-3d6448250f1e70dbafc760e17881395929510799.tar.zst
nixpkgs-3d6448250f1e70dbafc760e17881395929510799.zip
Merge pull request #43550 from IvanMalison/add_rofi-systemd
rofi-systemd: init at 0.1.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/rofi-systemd/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/tools/system/rofi-systemd/default.nix b/pkgs/tools/system/rofi-systemd/default.nix
new file mode 100644
index 00000000000..ee7626d2712
--- /dev/null
+++ b/pkgs/tools/system/rofi-systemd/default.nix
@@ -0,0 +1,45 @@
+{ stdenv, fetchFromGitHub, rofi, systemd, coreutils, utillinux, gawk, makeWrapper
+}:
+
+stdenv.mkDerivation rec {
+  name = "rofi-systemd-${version}";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "IvanMalison";
+    repo = "rofi-systemd";
+    rev = "v${version}";
+    sha256 = "1dbygq3qaj1f73hh3njdnmibq7vi6zbyzdc6c0j989c0r1ksv0zi";
+  };
+
+  buildInputs = [ makeWrapper ];
+
+  dontBuild = true;
+
+  installPhase = ''
+    mkdir -p $out/bin
+    cp -a rofi-systemd $out/bin/rofi-systemd
+  '';
+
+  wrapperPath = with stdenv.lib; makeBinPath [
+    rofi
+    coreutils
+    utillinux
+    gawk
+    systemd
+  ];
+
+  fixupPhase = ''
+    patchShebangs $out/bin
+
+    wrapProgram $out/bin/rofi-systemd --prefix PATH : "${wrapperPath}"
+  '';
+
+  meta = {
+    description = "Control your systemd units using rofi";
+    homepage = https://github.com/IvanMalison/rofi-systemd;
+    maintainers = with stdenv.lib.maintainers; [ imalison ];
+    license = stdenv.lib.licenses.gpl3;
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}