lol
0
fork

Configure Feed

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

at 22.05-pre 26 lines 672 B view raw
1{ lib, stdenv, fetchurl, pkg-config, libgnomeui, libxml2 }: 2 3stdenv.mkDerivation rec { 4 pname = "verbiste"; 5 6 version = "0.1.47"; 7 8 src = fetchurl { 9 url = "https://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz"; 10 sha256 = "02kzin3pky2q2jnihrch8y0hy043kqqmzxq8j741x80kl0j1qxkm"; 11 }; 12 13 nativeBuildInputs = [ pkg-config ]; 14 15 buildInputs = [ libgnomeui libxml2 ]; 16 17 enableParallelBuilding = true; 18 19 meta = with lib; { 20 homepage = "http://sarrazip.com/dev/verbiste.html"; 21 description = "French and Italian verb conjugator"; 22 license = licenses.gpl2Plus; 23 platforms = platforms.linux; 24 maintainers = with maintainers; [ orivej ]; 25 }; 26}