lol
0
fork

Configure Feed

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

at master 35 lines 807 B view raw
1{ 2 lib, 3 stdenv, 4 openssl, 5 fetchFromGitHub, 6}: 7 8stdenv.mkDerivation { 9 pname = "pev"; 10 version = "0-unstable-2020-05-23"; 11 12 src = fetchFromGitHub { 13 owner = "merces"; 14 repo = "pev"; 15 rev = "beec2b4f09585fea919ed41ce466dee06be0b6bf"; 16 hash = "sha256-HrMbk9YbuqkoBBM7+rfXpqVEnd1rDl2rMePdcfU1WDg="; 17 fetchSubmodules = true; 18 }; 19 20 buildInputs = [ openssl ]; 21 22 enableParallelBuilding = true; 23 24 makeFlags = [ "prefix=$(out)" ]; 25 26 installFlags = [ "prefix=$(out)" ]; 27 28 meta = with lib; { 29 description = "Full-featured, open source, multiplatform command line toolkit to work with PE (Portable Executables) binaries"; 30 homepage = "https://pev.sourceforge.net/"; 31 license = licenses.gpl2; 32 maintainers = with maintainers; [ jeschli ]; 33 platforms = platforms.linux; 34 }; 35}