Skip to content

Commit

Permalink
Merge pull request #48088 from dtzWill/fix/dex-version
Browse files Browse the repository at this point in the history
dex: grab simple upstream patch so it reports the right version
  • Loading branch information
dtzWill committed Oct 9, 2018
2 parents 844bcbd + 2de131b commit e8df98e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/tools/X11/dex/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, python3 }:
{ stdenv, fetchFromGitHub, python3, fetchpatch }:

stdenv.mkDerivation rec {
program = "dex";
Expand All @@ -16,6 +16,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ python3.pkgs.sphinx ];
makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];

patches = [
(fetchpatch {
url = https://github.com/jceb/dex/commit/107358ddf5e1ca4fa56ef1a7ab161dc3b6adc45a.patch;
sha256 = "06dfkfzxp8199by0jc5wim8g8qw38j09dq9p6n9w4zaasla60pjq";
})
];

meta = with stdenv.lib; {
description = "A program to generate and execute DesktopEntry files of the Application type";
homepage = https://github.com/jceb/dex;
Expand Down

0 comments on commit e8df98e

Please sign in to comment.