lol
0
fork

Configure Feed

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

at v192 26 lines 676 B view raw
1{ stdenv, fetchgit, bison2, flex }: 2 3with stdenv.lib; 4 5stdenv.mkDerivation rec { 6 name = "pcalc-${version}"; 7 version = "20141224"; 8 9 src = fetchgit { 10 url = git://git.code.sf.net/p/pcalc/code; 11 rev = "181d60d3c880da4344fef7138065943eb3b9255f"; 12 sha256 = "0n60m3p4kkqvvswjf50mnfaaacmzi1lss8vgy63mrgzwi9v6yb4l"; 13 }; 14 15 makeFlags = [ "DESTDIR= BINDIR=$(out)/bin" ]; 16 buildInputs = [ bison2 flex ]; 17 18 meta = { 19 homepage = http://pcalc.sourceforge.net/; 20 description = "Programmer's calculator"; 21 license = licenses.gpl2; 22 maintainers = with stdenv.lib.maintainers; [ ftrvxmtrx ]; 23 platforms = stdenv.lib.platforms.linux; 24 inherit version; 25 }; 26}