mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
e2ccaaa9be
according to the homepage the niminum python version is 2.7 but it should also run on python3
22 lines
579 B
Nix
22 lines
579 B
Nix
{ lib, fetchurl, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "menumaker";
|
|
version = "0.99.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/menumaker/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-JBXs5hnt1snbnB1hi7q7HBI7rNp0OoalLeIM0uJCdkE=";
|
|
};
|
|
|
|
format = "other";
|
|
|
|
meta = with lib; {
|
|
description = "Heuristics-driven menu generator for several window managers";
|
|
homepage = "http://menumaker.sourceforge.net";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|