lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v206 23 lines 604 B view raw
1{ stdenv, fetchFromGitHub, python3 }: 2 3stdenv.mkDerivation rec { 4 program = "dex"; 5 name = "${program}-${version}"; 6 version = "0.7"; 7 8 src = fetchFromGitHub { 9 owner = "jceb"; 10 repo = program; 11 rev = "v${version}"; 12 sha256 = "041ms01snalapapaniabr92d8iim1qrxian626nharjmp2rd69v5"; 13 }; 14 15 propagatedBuildInputs = [ python3 ]; 16 makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ]; 17 18 meta = { 19 description = "A program to generate and execute DesktopEntry files of the Application type"; 20 homepage = https://github.com/jceb/dex; 21 platforms = stdenv.lib.platforms.linux; 22 }; 23}