nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 pidgin, 6}: 7 8stdenv.mkDerivation rec { 9 pname = "pidgin-window-merge"; 10 version = "0.3"; 11 12 src = fetchurl { 13 url = "https://github.com/downloads/dm0-/window_merge/window_merge-${version}.tar.gz"; 14 sha256 = "0cb5rvi7jqvm345g9mlm4wpq0240kcybv81jpw5wlx7hz0lwi478"; 15 }; 16 17 buildInputs = [ pidgin ]; 18 19 meta = with lib; { 20 homepage = "https://github.com/dm0-/window_merge"; 21 description = "Pidgin plugin that merges the Buddy List window with a conversation window"; 22 license = licenses.gpl3; 23 platforms = platforms.linux; 24 maintainers = [ ]; 25 }; 26}