about summary refs log tree commit diff
path: root/pkgs/applications/misc/dmensamenu/default.nix
blob: e83d07ef1c88f40ad63108aa0b67becaad2f5aca (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
{ stdenv, buildPythonApplication, fetchFromGitHub, requests, dmenu }:

buildPythonApplication rec {
  name = "dmensamenu-${version}";
  version = "1.1.0";

  propagatedBuildInputs = [
    requests
    dmenu
  ];

  src = fetchFromGitHub {
    owner = "dotlambda";
    repo = "dmensamenu";
    rev = version;
    sha256 = "126gidid53blrpfq1vd85iim338qrk7n8r4nyhh2hvsi7cfaab1y";
  };

  meta = with stdenv.lib; {
    homepage = https://github.com/dotlambda/dmensamenu;
    description = "Print German canteen menus using dmenu and OpenMensa";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}