Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c1661fa7e1a0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bd97a6ac7d80
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 12, 2020

  1. xmenu: 4.3.1 -> 4.4.1

    r-ryantm authored and neonfuz committed Nov 12, 2020
    Copy the full SHA
    9cb3292 View commit details
  2. Merge pull request #97947 from neonfuz/xmenu

    xmenu: version bump 4.3.1 -> 4.4.1
    ryantm authored Nov 12, 2020
    Copy the full SHA
    bd97a6a View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/misc/xmenu/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/misc/xmenu/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "xmenu";
version = "4.3.1";
version = "4.4.1";

src = fetchFromGitHub {
owner = "phillbush";
repo = "xmenu";
rev = "v${version}";
sha256 = "0m97w1nwak5drcxxlyisqb73fxkapy2rlph9mg531kbx3k2h30r1";
sha256 = "1s70zvsaqnsjqs298vw3py0vcvia68xlks1wcz37pb88bwligz1x";
};

buildInputs = [ imlib2 libX11 libXft libXinerama ];
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A menu utility for X";
homepage = "https://github.com/phillbush/xmenu";
license = licenses.publicDomain;
license = licenses.mit;
maintainers = with maintainers; [ neonfuz ];
platforms = platforms.all;
};