nixpkgs/pkgs/tools/system/rofi-systemd/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

46 lines
1,012 B
Nix

{ stdenv, fetchFromGitHub, rofi, systemd, coreutils, utillinux, gawk, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "rofi-systemd";
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;
};
}