nixpkgs/pkgs/applications/misc/dmensamenu/default.nix

35 lines
768 B
Nix
Raw Normal View History

2019-01-27 14:23:02 +01:00
{ stdenv, buildPythonApplication, fetchFromGitHub, substituteAll, requests, dmenu }:
2017-06-28 11:42:50 +02:00
buildPythonApplication rec {
2019-01-27 14:23:02 +01:00
pname = "dmensamenu";
version = "1.2.1";
2017-06-28 11:42:50 +02:00
src = fetchFromGitHub {
owner = "dotlambda";
repo = "dmensamenu";
2017-12-07 23:06:43 +01:00
rev = version;
2019-01-27 14:23:02 +01:00
sha256 = "15c8g2vdban3dw3g979icypgpx52irpvv39indgk19adicgnzzqp";
2017-06-28 11:42:50 +02:00
};
2019-01-27 14:23:02 +01:00
patches = [
(substituteAll {
src = ./dmenu-path.patch;
inherit dmenu;
})
];
propagatedBuildInputs = [
requests
];
# No tests implemented
doCheck = false;
2017-06-28 11:42:50 +02:00
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 ];
};
}