mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
22 lines
608 B
Nix
22 lines
608 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";
|
|
mainProgram = "mmaker";
|
|
homepage = "https://menumaker.sourceforge.net";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|