nixpkgs/pkgs/applications/misc/menumaker/default.nix
Artturin e2ccaaa9be menumaker: 0.99.12 -> 0.99.13 and switch to python3
according to the homepage the niminum python version is
2.7 but it should also run on python3
2021-09-20 21:31:07 +03:00

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 ];
};
}