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