about summary refs log tree commit diff
path: root/pkgs/applications/misc/rofi-menugen/default.nix
blob: 569ae6ef4cd88a35581e3efc3dc54b1f63192f27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib, stdenv, fetchFromGitHub, rofi, gnused }:

stdenv.mkDerivation rec {
  pname = "rofi-menugen";
  version = "unstable-2015-12-28";

  src = fetchFromGitHub {
    owner = "octotep";
    repo = "menugen";
    rev = "168efd2608fdb88b1aff3e0244bda8402169f207";
    sha256 = "09fk9i6crw772qlc5zld35pcff1jq4jcag0syial2q000fbpjx5m";
  };

  postPatch = ''
    sed -i -e "s|menugenbase|$out/bin/rofi-menugenbase|" menugen
    sed -i -e "s|rofi |${rofi}/bin/rofi |" menugen
    sed -i -e "s|sed |${gnused}/bin/sed |" menugenbase
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp menugen $out/bin/rofi-menugen
    cp menugenbase $out/bin/rofi-menugenbase
  '';

  meta = with lib; {
    description = "Generates menu based applications using rofi";
    homepage = "https://github.com/octotep/menugen";
    maintainers = with maintainers; [ ];
    platforms = platforms.all;
  };
}