mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
405307cf66
might work with 3, not tested.
22 lines
580 B
Nix
22 lines
580 B
Nix
{ lib, fetchurl, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
pname = "menumaker";
|
|
version = "0.99.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/menumaker/${pname}-${version}.tar.gz";
|
|
sha256 = "034v5204bsgkzzk6zfa5ia63q95gln47f7hwf96yvad5hrhmd8z3";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|