nixpkgs/pkgs/tools/X11/dex/default.nix

26 lines
692 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3 }:
2015-10-14 15:11:22 +00:00
stdenv.mkDerivation rec {
program = "dex";
name = "${program}-${version}";
2020-06-16 15:58:01 +00:00
version = "0.9.0";
2015-10-14 15:11:22 +00:00
src = fetchFromGitHub {
owner = "jceb";
repo = program;
rev = "v${version}";
2020-06-16 15:58:01 +00:00
sha256 = "03aapcywnz4kl548cygpi25m8adwbmqlmwgxa66v4156ax9dqs86";
2015-10-14 15:11:22 +00:00
};
propagatedBuildInputs = [ python3 ];
nativeBuildInputs = [ python3.pkgs.sphinx ];
2015-10-14 15:11:22 +00:00
makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];
meta = with lib; {
2015-10-14 15:11:22 +00:00
description = "A program to generate and execute DesktopEntry files of the Application type";
homepage = "https://github.com/jceb/dex";
2018-09-12 19:56:37 +00:00
platforms = platforms.linux;
license = licenses.gpl3Plus;
2015-10-14 15:11:22 +00:00
};
}